Skip to content

Instantly share code, notes, and snippets.

@zhwei
Last active August 15, 2016 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhwei/3c4c595f072d049d416d5b26f5e044f9 to your computer and use it in GitHub Desktop.
Save zhwei/3c4c595f072d049d416d5b26f5e044f9 to your computer and use it in GitHub Desktop.
Baidu Ad Cleaner
// ==UserScript==
// @name Baidu Ad Cleaner
// @version 0.2
// @description Baidu Result Set Ad Cleaner
// @author zhwei
// @match ://www.baidu.com/*
// @updateURL https://gist.github.com/zhwei/3c4c595f072d049d416d5b26f5e044f9/raw/4aadcb34dc44c3abb786b89bf535a3fa96355ac7/BaiduAdCleaner.js
// @downloadURL https://gist.github.com/zhwei/3c4c595f072d049d416d5b26f5e044f9/raw/4aadcb34dc44c3abb786b89bf535a3fa96355ac7/BaiduAdCleaner.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function () {
setInterval(function () {
$('a[href^="http://e.baidu.com"]').parent().fadeOut('fast');
$('a:contains("推广链接")').parent().fadeOut('fast');
$('div#content_left > :not(.result-op):contains(商业推广)').remove();
}, 100);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment