NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @copyright 2019, MikeCoder (https://openuserjs.org/users/MikeCoder) // @license MIT // @name Remove Ads from baidu.com // @author MikeCoder // @namespace https://mikecoder.cn/baidu.com // @description try to take over the baidu site! // @include http*://*.baidu.com* // @include http*://baidu.com* // @version 1 // @grant none // ==/UserScript== function removeAds() { // console.log('removing Ads'); $('[style$=\'!important\']').hide(); } $(removeAds()); $("#content_left").bind('DOMSubtreeModified', function (e) { if (e.target.style.visibility == "visible") { removeAds(); } if (e.target.textContent.indexOf("广告") > 0) { removeAds(); if (e.target.id != "content_left") { e.target.innerText = ""; } } });