try to take over the world!
当前为
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://cn.bing.com/search?q=*
// @grant none
// ==/UserScript==
(function() {
'use strict';
for (const e of document.querySelectorAll('.b_ans')) {
const textContent = String(e.getElementsByTagName('h2')[0].textContent)
if (textContent !== '相关搜索' && textContent !== '相关英文搜索') {
e.remove()
}
}
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址