您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
精简必应搜索(Bing)的右侧边栏
// ==UserScript== // @name 精简必应搜索(Bing)的右侧边栏,只保留「相关搜索」和「相关英文搜索」 // @namespace http://tampermonkey.net/ // @version 0.3 // @description 精简必应搜索(Bing)的右侧边栏 // @author prettykernel // @match https://cn.bing.com/search?q=* // @grant none // ==/UserScript== (function() { 'use strict'; for (const e of document.querySelectorAll('.b_ans')) { const textContent = e.getElementsByTagName('h2')[0] && String(e.getElementsByTagName('h2')[0].textContent) if (textContent !== '相关搜索' && textContent !== '相关英文搜索') { e.remove() } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址