Remove ads from Baidu search
目前為
// ==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.2
// @description Remove ads from Baidu search
// @description:zh-CN 移除百度搜索中的广告
// @author Antecer
// @include http*://www.baidu.com*
// @grant none
// @compatible chrome 测试通过
// ==/UserScript==
jQuery.noConflict();
(function($) {
$(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);
});
})(jQuery);