Greasy Fork is available in English.
百度“首页”在未登陆时会有百度热搜(登录时可以通过账号设置隐藏),此脚本用于未登录时隐藏百度“首页”热搜。
// ==UserScript==// @name 移除百度首页热搜// @version 0.0.2// @author Achernar// @match https://www.baidu.com// @description 百度“首页”在未登陆时会有百度热搜(登录时可以通过账号设置隐藏),此脚本用于未登录时隐藏百度“首页”热搜。// @grant none// @namespace https://greasyfork.org/users/580896// ==/UserScript==// 获取百度热搜板块的 DOM 元素const hotSearchElement = document.querySelector('.s-hotsearch-wrapper');// 如果该元素存在,则将其隐藏if (hotSearchElement) {hotSearchElement.style.display = 'none';}