您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This makes the "View My Runes" in the combat tab prettier to the eyes.
// ==UserScript== // @name Melvor Idle - Better View My Runes // @namespace http://tampermonkey.net/ // @version 1.0.3 // @description This makes the "View My Runes" in the combat tab prettier to the eyes. // @author Jessy#3869 // @match https://*.melvoridle.com/* // @exclude https://wiki.melvoridle.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=melvoridle.com // @noframes // @grant none // @license GNU GPLv3 // ==/UserScript== ((main) => { var script = document.createElement('script'); script.textContent = `try { (${main})(); } catch (e) { console.log(e); }`; document.body.appendChild(script).parentNode.removeChild(script); })(() => { 'use strict'; function betterVMR() { let removestyles = `$("#combat-rune-count-container > div:not(.border-success)").removeAttr("style").children().removeAttr("style").find("small").removeAttr("style");` let addstyles = `$("#combat-rune-count-container div.border").removeClass("border").attr("style", "padding: 2px 14px").children().attr("style", "background-color:#3e4856 !important; border:solid 2px #7e8999 !important; border-radius: 5px;").find("small").removeClass("text-combat-smoke").attr("style", "color:#30c78d !important;");` $("#combat-rune-count-container div.border").removeClass("border").attr("style", "padding: 2px 14px").children().attr("style", "background-color:#3e4856 !important; border:solid 2px #7e8999 !important; border-radius: 5px;").find("small").removeClass("text-combat-smoke").attr("style", "color:#30c78d !important;"); $("#combat-menu-item-3").attr("onclick", `(() => {${removestyles} ${addstyles} changeCombatMenu(3)})();`); } function loadScript() { if (typeof confirmedLoaded !== 'undefined' && confirmedLoaded) { clearInterval(interval); console.log('[JessyMods] Loading "Better View My Runes" Script.'); betterVMR(); } } const interval = setInterval(loadScript, 500); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址