Greasy Fork is available in English.
hide baidu hotspot
- // ==UserScript==
- // @name 隐藏百度热搜-hide baidu hotspot
- // @namespace http://tampermonkey.net/
- // @version 2025-02-28
- // @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.remove(); // 隐藏元素
- }
- })
- })();