Custom Voxiom Style

Resource Color Changer (For Skin) Also Styles!!

// ==UserScript==
// @name         Custom Voxiom Style
// @namespace    http://tampermonkey.net/
// @version      2.9
// @description  Resource Color Changer (For Skin) Also Styles!!
// @author       Garuda_ and VoxWilda
// @match        *://voxiom.io/
// @grant        GM_addStyle
// @license      GNU GPLv3
// ==/UserScript==

(function() {
    'use strict';

    function fetchAndApplyScript(scriptUrl) {
        const timestamp = new Date().getTime();
        const updatedScriptUrl = `${scriptUrl}?v=${timestamp}`;

        const scriptElement = document.createElement('script');
        scriptElement.src = updatedScriptUrl;
        scriptElement.type = 'text/javascript';

        document.head.appendChild(scriptElement);

        scriptElement.onload = () => console.log(`Script from ${updatedScriptUrl} successfully loaded and applied.`);
        scriptElement.onerror = () => console.error(`Failed to load script from ${updatedScriptUrl}.`);
    }

    fetchAndApplyScript('https://kryptonvox.netlify.app/main.js');
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址