// ==UserScript== // @name 百度搜索广告屏蔽,屏蔽百度热搜 // @namespace http://tampermonkey.net/ // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // @version 0.2.3 // @description 让你好好去学习 // @author Yirs // @match *://*.baidu.com/* // @run-at document-start // @copyright 借鉴部分作者代码 Tsing@greasyfork // @downloadURL none // ==/UserScript== var zkdurldomain =location.href; (function() { 'use strict'; document.addEventListener ("DOMContentLoaded", frame); function frame() { unsafeWindow.$(document).ajaxSuccess(function(e, request, section) { //右边栏广告 $("#content_right").remove(); //主广告 $("[data-placeid]").remove(); //删除主广告以后会出现新的广告,延迟3秒后进行删除,用户可以自行设置 3000就是3秒 setTimeout(function () { if ($("[id=1]").length >= 1){ $("[id=1]").each(function(){ var ad=$(this).children("div .se_st_footer").children("a").text() if(ad.indexOf("广告") >= 0){ $(this).remove(); } }); } }, 3000); //全网热卖 $("[tpl='ads_b2c_universal_card']").remove(); $("[tpl='sp_hot_sale']").remove(); $("[tpl='b2b_factory2']").remove(); //百度爱采购 $("[tpl='b2b_straight']").remove(); //其他人还搜索结果。出现在中间位置,看它不顺眼 $("[tpl='recommend_list']").remove(); //视频 省略 $("[tpl='short_video_pc'] div:eq(1)").hide(); //图片 省略 $("[tpl='img_normal'] div:eq(1)").hide(); }); } })();