您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
quest count
// ==UserScript== // @name RS Wiki - Hide Finished Quests & Update Counts // @version 1.0.2 // @description quest count // @author You // @match https://runescape.wiki/w/List_of_quests_by_age* // @match https://runescape.wiki/w/Quests/Strategy* // @grant none // @namespace https://gf.qytechs.cn/users/316895 // ==/UserScript== (function() { 'use strict'; $("<style type='text/css'> tr.highlight-on{display:none;} </style>").appendTo("head"); if (window.location.href.indexOf('/w/List_of_quests_by_age') > 0) { setInterval(function() { jQuery('.tabber .tabbertab:visible > p:first').html(jQuery('.tabber .tabbertab:visible > p:first').html().trim().replace(jQuery('.tabber .tabbertab:visible > p:first').html().trim().match(/(\d+)/)[0], jQuery('.tabber .tabbertab:visible .wikitable.lighttable.qc-active tbody tr:not(.highlight-on)').length)); }, 1000); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址