// ==UserScript== // @name 去除百度搜索广告 // @namespace http://tampermonkey.net/ // @version 0.1.1 // @description 去除百度搜索推广、广告 // @author 大雄 // @match https://www.baidu.com/* // @grant none // @downloadURL none // ==/UserScript== setInterval( function (){ var container = document.getElementById( 'content_left' ); Array.from( container.children).forEach( function ( item ){ if( item && /display:block\s+!important;visibility:visible\s+!important/i.test( item.getAttribute( 'style' ) ) ){ this.removeChild( item ); } }, container ); }, 300 );