Greasy Fork

MWI QoL Skill requirement

Tools for MilkyWayIdle. Highlights equipment, tool, and ability level requirements in color.

目前为 2025-03-24 提交的版本。查看 最新版本

// ==UserScript==
// @name         MWI QoL Skill requirement
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  Tools for MilkyWayIdle. Highlights equipment, tool, and ability level requirements in color.
// @author       AlexZaw
// @license      GNU General Public License v3.0 or later
// @match        https://www.milkywayidle.com/*
// @match        https://test.milkywayidle.com/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

const RequiredLevelItemStyle = document.createElement("style");
RequiredLevelItemStyle.textContent = `
  :where(.ItemTooltipText_itemTooltipText__zFq3A :where(.ItemTooltipText_equipmentDetail__3sIHT, .ItemTooltipText_abilityDetail__3ZiU5)) > div:nth-child(2) {
    color: blue;
  }
`;
document.head.appendChild(RequiredLevelItemStyle);

})();