// ==UserScript== // @name 饭饭百度广告自动去除 // @namespace http://your.homepage/ // @version 0.3 // @description 百度搜索自动去除广告词条 // @author 小凡宝宝 // @match https://wenku.baidu.com/view/476ebd705e0e7cd184254b35eefdc8d376ee14b6.html // @include *://www.baidu.com/* // @grant none // @license AGPL License // @downloadURL none // ==/UserScript== var m = new MutationObserver(function() { document.querySelectorAll('.EC_result').forEach(a => { a.style.display = 'none' }) }); m.observe(document.body, {childList: true,subtree:true})