您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Correctly centers the "The ingredients have all been harvested" message in the Halloween UI.
// ==UserScript== // @name 🐭️ MouseHunt - Center the Halloween shutdown message // @version 1.0.0 // @description Correctly centers the "The ingredients have all been harvested" message in the Halloween UI. // @license MIT // @author bradp // @namespace bradp // @match https://www.mousehuntgame.com/* // @icon https://brrad.com/mouse.png // @grant none // @run-at document-end // ==/UserScript== ((function () { 'use strict'; const addStyles = document.createElement('style'); addStyles.innerHTML = ` .halloweenBoilingCauldronHUD-shutdownButton { left: 271px; width: 198px; }`; document.head.appendChild(addStyles); })());