//fuck baidu // ==UserScript== // @name Fuck baidu // @namespace http://tampermonkey.net/ // @version 1.0 // @description Filter out all search results related to "baidu.com" from search engines. // @author Hijack_Nick // @match *://www.google.com/search* // @match *://www.bing.com/search* // @match *://search.yahoo.com/search* // @match *://global.bing.com/search* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; const filterKeywords = ['baidu', '百度']; const results = document.querySelectorAll('.b_algo'); results.forEach(result => { const resultText = result.innerText.toLowerCase(); filterKeywords.forEach(keyword => { if (resultText.includes(keyword)) { result.style.display = 'none'; } }); }); })();