您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
百度搜索自动去除广告词条
当前为
// ==UserScript== // @name 饭饭百度广告自动去除 // @namespace http://your.homepage/ // @version 0.2 // @description 百度搜索自动去除广告词条 // @author 小凡宝宝 // @match https://wenku.baidu.com/view/476ebd705e0e7cd184254b35eefdc8d376ee14b6.html // @include *://www.baidu.com/* // @grant none // @license AGPL License // ==/UserScript== window.onload = function() { var script = document.createElement('script'); script.type = 'text/javascript'; script.text = "setInterval(function clean() { document.querySelectorAll('.EC_result').forEach(a => {a.style.display = 'none';})},500)"; document.body.appendChild(script); }