您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
禁掉烦人的九游推广
当前为
// ==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 // ==/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... })();