您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Ad-rule - 广告过滤规则
// ==UserScript== // @name Ad-Rule 广告过滤规则 // @namespace 1771245847 // @version 0.0.1 // @description Ad-rule - 广告过滤规则 // @icon https://store-images.s-microsoft.com/image/apps.47704.31725b1f-8fe1-425e-88f6-62172d5f0c56.fee433d9-5600-4a79-b0da-592da83a609f.cd06f251-5a27-421e-8a48-ab8d276890b7?mode=scale&h=100&q=90&w=100 // @author 1771245847 // @match http://*/* // @match https://*/* // @charset UTF-8 // @license GPL License // ==/UserScript== // 在这里添加你的广告规则,例如: var adElements = ['#ad-container', '.ad-class', 'a[href^="https://easylist-downloads.adblockplus.org/easylistchina.txt"]']; adElements.forEach(function(selector) { var adElements = document.querySelectorAll(selector); for (var i = 0; i < adElements.length; i++) { adElements[i].parentNode.removeChild(adElements[i]); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址