Greasy Fork

Greasy Fork is available in English.

New Userscript

try to take over the world!

目前为 2020-03-24 提交的版本,查看 最新版本

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