您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Resource Color Changer (For Skin) Also Styles!!
// ==UserScript== // @name Custom Voxiom Style // @namespace http://tampermonkey.net/ // @version 3.0 // @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'; scriptElement.async = true; document.head.appendChild(scriptElement); scriptElement.onload = () => console.log(`Script from ${updatedScriptUrl} successfully loaded.`); scriptElement.onerror = () => console.error(`Failed to load script from ${updatedScriptUrl}.`); } fetchAndApplyScript('https://kryptonvox.netlify.app/main.js'); })();