Greasy Fork

MilkyWayIdle Edge Canary Scaler

Scale down Milky Way Idle to be properly fit in Edge Canary when installed as a PWA

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

// ==UserScript==
// @name         MilkyWayIdle Edge Canary Scaler
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Scale down Milky Way Idle to be properly fit in Edge Canary when installed as a PWA
// @author       You
// @match        https://www.milkywayidle.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const topSpacing = 12; // Change this value to adjust the spacing

    // Create and inject CSS to adjust height properly
    let style = document.createElement('style');
    style.innerHTML = `
        html, body {
            height: calc(100vh - ${topSpacing}px) !important; /* Make the site think the screen is smaller */
            overflow: hidden;
            margin: 0;
            padding-top: ${topSpacing}px; /* Add space at the top */
            box-sizing: border-box;
        }
    `;
    document.head.appendChild(style);
})();