Greasy Fork

去除百度搜索广告

try to take over the world!

目前为 2016-09-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         去除百度搜索广告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Daxiong
// @match        https://www.baidu.com/*
// @grant        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 );