// ==UserScript== // @name 去百度搜索置顶推广 // @author burningall // @description 去除插入在百度搜索结果头部的推广链接。 // @version 2015.5.27 // @include *www.baidu.com* // @supportURL http://www.burningall.com // @contributionURL troy450409405@gmail.com|alipay.com // @namespace https://greasyfork.org/zh-CN/users/3400-axetroy // @downloadURL none // ==/UserScript== (function() { function $(id) { return document.getElementById(id); }; function addEvent(obj, event, fn) { return obj.addEventListener ? obj.addEventListener(event, fn, false) : obj.attachEventListener('on' + event, fn); }; function removeAds(){ if(!$('content_left')){ return false; }; var adlist = $('content_left').children; for (var i=0;i1000){ adlist[i].style.cssText="display: none !important;" adlist[i].remove(adlist[i]) }; if(adlist[i].getAttribute("id")==null){ adlist[i].style.cssText="display: none !important;" adlist[i].remove(adlist[i]) }; }; }; addEvent(document,'DOMNodeInserted',function(){ removeAds(); }) })()