移除百度热榜,有需求留言
// ==UserScript==
// @name 移除百度热榜
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 移除百度热榜,有需求留言
// @author lalalalala
// @match https://*.baidu.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var cur=0;
var removeHot = function(){
$('[title="百度热榜"]').parent().parent().remove();
if(cur<10){
cur+=1;
setTimeout(removeHot,1000);
}
}
removeHot();
// Your code here...
})();