AdBlock-Baidu

Remove ads from Baidu search

As of 2017-09-04. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name                 AdBlock-Baidu
// @name:zh-CN           百度搜索去广告
// @namespace            https://greasyfork.org/zh-CN/users/42351
// @require              https://code.jquery.com/jquery-3.2.1.min.js
// @version              0.1
// @description          Remove ads from Baidu search
// @description:zh-CN    移除百度搜索中的广告
// @author               Antecer
// @include              http*://www.baidu.com*
// @grant                none
// @compatible           chrome 测试通过
// ==/UserScript==

jQuery.noConflict()(function(){
    setInterval(function(){
        $('span:contains(广告)').parentsUntil('#content_left').remove();        // 移除搜索结果的广告

        $('a:contains(品牌广告)').parentsUntil('#content_right td').remove();   // 移除右边栏品牌广告
        $('#content_right br').remove();                                        // 移除右边栏占位空行
        $('.ad-block').parentsUntil('#content_right td').remove();              // 移除右边栏推广热线
    },200);
});