// ==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 // @downloadURL none // ==/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); }