您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides XXX requests if you have family safe filter on
// ==UserScript== // @name KAT - Hide XXX Requests // @namespace HideRequests // @version 1.0 // @description Hides XXX requests if you have family safe filter on // @match https://kat.cr/request/* // @match https://sandbox.kat.cr/request/* // ==/UserScript== $('<div id="fsf" style="display:none"></div>').insertAfter(".clear"); $.get( "/settings/", function( data ) { $( "#fsf" ).html( data.html ); if ($('input[name="hide_xxx"]').attr("checked") == "checked") { if (window.location.href.search("\/xxx\/") != -1) window.location.assign("https://kat.cr/request/"); $('a[href$="/xxx/"]').remove(); $(".request-item").each(function() { if ($(this).find(".requestBoxBody").children().eq(2).children().text() == "XXX") $(this).hide(); }); } $("#fsf").remove(); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址