// ==UserScript== // @name [MWI]personal use // @name:zh-CN [银河奶牛]自用脚本 // @namespace http://tampermonkey.net/ // @version 0.1.14 // @description 个人脚本,适用于 Milky Way Idle 游戏 // @description:zh-CN 个人专用脚本,适用于 Milky Way Idle 游戏 // @author deric // @license MIT // @match https://www.milkywayidle.com/game* // @grant GM_registerMenuCommand // @downloadURL https://update.greasyfork.icu/scripts/542553/%5BMWI%5Dpersonal%20use.user.js // @updateURL https://update.greasyfork.icu/scripts/542553/%5BMWI%5Dpersonal%20use.meta.js // ==/UserScript== (function() { 'use strict'; const MWI_SCRIPT_VERSION = (typeof GM_info !== 'undefined' && GM_info.script && GM_info.script.version) ? GM_info.script.version : 'unknown'; function showSettingPanel() { let exist = document.getElementById('mwiSettingPopup'); if (exist) exist.remove(); const popup = document.createElement('div'); popup.id = 'mwiSettingPopup'; popup.style.position = 'fixed'; popup.style.top = '120px'; popup.style.left = '50%'; popup.style.transform = 'translateX(-50%)'; popup.style.background = 'white'; popup.style.border = '2px solid #888'; popup.style.boxShadow = '0 2px 12px rgba(0,0,0,0.2)'; popup.style.zIndex = 99999; popup.style.padding = '24px 32px'; popup.style.minWidth = '300px'; popup.innerHTML = `