移除百度热榜

移除百度热榜,有需求留言

// ==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...
})();

QingJ © 2025

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