您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change visible Robux amount on Roblox mobile site (just for fun)
// ==UserScript== // @name Fake Robux Display Mobile-Friendly // @namespace http://tampermonkey.net/ // @version 1.0 // @description Change visible Robux amount on Roblox mobile site (just for fun) // @author You // @match https://m.roblox.com/* // @match https://www.roblox.com/* // @run-at document-idle // ==/UserScript== (function() { 'use strict'; const targetAmount = '13M+'; // Try selectors for desktop and mobile const selectors = [ '#nav-robux-amount', // Desktop '.nav-robux-amount', // Alternative desktop class '.robux-balance', // Hypothetical mobile class - adjust after inspection '.mobile-robux-amount' // Hypothetical mobile class - adjust after inspection ]; function setFakeRobux() { for (const selector of selectors) { const el = document.querySelector(selector); if (el && el.textContent.trim() !== targetAmount) { el.textContent = targetAmount; // Optional: console log for debug // console.log(`Updated Robux display at selector: ${selector}`); } } } // Run every 1 second for 20 seconds let attempts = 0; const maxAttempts = 20; const interval = setInterval(() => { setFakeRobux(); attempts++; if (attempts >= maxAttempts) clearInterval(interval); }, 1000); // Observe mutations as backup const observer = new MutationObserver(() => setFakeRobux()); observer.observe(document.body, { childList: true, subtree: true }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址