// ==UserScript== // @name 百度热搜清除工具 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description try to take over the world! // @author You // @match https://www.baidu.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var d={}; setInterval(function(){ d= document.getElementById("content_right"); if(d) d.remove(); },50); })();