隐藏百度热搜-hide baidu hotspot

hide baidu hotspot

当前为 2025-02-26 提交的版本,查看 最新版本

// ==UserScript==
// @name         隐藏百度热搜-hide baidu hotspot
// @namespace    http://tampermonkey.net/
// @version      2025-02-24
// @description  hide baidu hotspot
// @author       mattpower-tongyi
// @match        https://www.baidu.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 在页面加载完成后执行
    window.addEventListener('load', function() {
        var element = document.getElementById('content_right');
        if (element) {
            element.style.display = 'none'; // 隐藏元素
        }
    })
})();