您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Filter out unwanted content on Greasy Fork镜像
// ==UserScript== // @name Greasy Fork镜像 Content Filter // @namespace https://openuserjs.org/ // @description Filter out unwanted content on Greasy Fork镜像 // @include http*://gf.qytechs.cn/en/scripts* // @version 1.0 // @grant GM_addStyle // ==/UserScript== GM_addStyle(".width-constraint {max-width: 1180px !important}"); var entrytitles = ["Agar.io", "OGARio", "Slither.io", "Diep.io"]; var nodes = document.evaluate("//ol[@class='script-list']/li/article/h2/a | //ol[@class='script-list']/li/article/h2/span[@class='description']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null); for (var i = 0; i < nodes.snapshotLength; i++) { var curScript = nodes.snapshotItem(i).textContent.toString(); for (var j = 0; j < entrytitles.length; j++) { var x = new RegExp("\\b" + entrytitles[j] + "\\b", "gi"); if (curScript.match(x)) { nodes.snapshotItem(i).parentNode.parentNode.parentNode.style.display = 'none'; break; } } }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址