精简必应搜索(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或关注我们的公众号极客氢云获取最新地址