🏠 

Greasy Fork is available in English.

隐藏百度热搜-hide baidu hotspot

hide baidu hotspot


安装此脚本?
  1. // ==UserScript==
  2. // @name 隐藏百度热搜-hide baidu hotspot
  3. // @namespace http://tampermonkey.net/
  4. // @version 2025-02-28
  5. // @description hide baidu hotspot
  6. // @author mattpower-tongyi
  7. // @match https://www.baidu.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. // 在页面加载完成后执行
  14. window.addEventListener('load', function() {
  15. var element = document.getElementById('content_right');
  16. if (element) {
  17. element.remove(); // 隐藏元素
  18. }
  19. })
  20. })();