百度搜索去广告

移除百度搜索中的广告

目前为 2017-09-04 提交的版本。查看 最新版本

// ==UserScript==
// @name                 AdBlock-Baidu
// @name:zh-CN           百度搜索去广告
// @namespace            https://gf.qytechs.cn/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);
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址