// ==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 // @downloadURL 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() } } })();