// ==UserScript== // @name 百度去广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 简单的去下,根据广告字样判断 // @author mfk // @match https://www.baidu.com/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; function removeGg(){ $("#content_left").children("div").each(function(){ if(!$(this).attr("class")){ $(this).remove(); return; } var ggflag=false; $(this).find('a[target="_blank"]').each(function(){ if($(this).text()=='广告') { ggflag=true; return; } }) if(ggflag){ $(this).remove(); } }); } setInterval(function(){ removeGg() }, 800); })();