屏蔽百度热榜

百度热榜扰我心智

// ==UserScript==
// @name         屏蔽百度热榜
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  百度热榜扰我心智
// @author       King
// @match        https://www.baidu.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var s = null
    var q = null;
    var interval = null;
    console.log("启动");
    function go(){
        interval = setInterval(function(){
            if(interval != null ) clearInterval(interval);
            s = document.getElementById("con-ar");
            q = document.getElementById("FYB_RD");
            if(s != null) s.style.display="none";
            if(q != null) q.style.display="none";
            go();
        },30)
    }
     go();
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址