您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在自家主頁上新增一個 R18 打碼的按扭來遮蔽成人內容 (防止同事、同學、老闆經過
// ==UserScript== // @name plurk R18 遮蔽 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 在自家主頁上新增一個 R18 打碼的按扭來遮蔽成人內容 (防止同事、同學、老闆經過 // @author S.Dot, ThanatosDi // @match https://www.plurk.com/* // @homepage https://github.com/SentenceDot // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // ==/UserScript== (function() { 'use strict'; var filter_switch = false; // Your code here... $("#updater").append('<div id="filter" class="item" style=""><a><i class="pif-message-new"></i><span id="noti_np_text">R18 遮蔽</span><span id="filter_message" class="unread_generic">OFF</span></a></div>'); $("#filter").click(()=>{ filter_switch = !filter_switch; console.log('click') console.log(filter_switch) if(filter_switch){ $("#filter_message").text("ON"); $("._lc_ .plurk.porn .plurk_cnt .td_cnt ").css({"filter":" blur(4px)"}); $("._lc_ .plurk.porn .plurk_cnt .td_cnt").hover(function () { $(this).css({"filter":"none"}); }, function(){ $(this).css({"filter":" blur(4px)"}); }) } else{ $("#filter_message").text("OFF"); $("._lc_ .plurk.porn .plurk_cnt .td_cnt ").css({"filter":""}); $("._lc_ .plurk.porn .plurk_cnt .td_cnt").hover(function () { $(this).css({"filter":""}); }, function(){ $(this).css({"filter":""}); }) } }) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址