// ==UserScript== // @name 操你妈九游 // @namespace http://vear.vip/ // @version 0.1 // @description 禁掉烦人的九游推广 // @author You // @match https://www.baidu.com/* // @icon https://www.google.com/s2/favicons?domain=baidu.com // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; Array.from(document.getElementsByClassName('c-showurl c-color-gray')).forEach((ele, index) => { if (ele.innerText.indexOf('9game') !== -1) { Array.from(document.getElementsByClassName('result c-container new-pmd'))[index].style.display = 'none' } }) // Your code here... })();