您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Changes Roblox topbar text to old-school names from 2016. Can be used with other old ROBLOX Themes, like Legacy Old Theme and others.
// ==UserScript== // @name Old ROBLOX Topbar Names // @namespace https://roblox.com // @version 1.0 // @description Changes Roblox topbar text to old-school names from 2016. Can be used with other old ROBLOX Themes, like Legacy Old Theme and others. // @author DrCoolZomboi // @match https://www.roblox.com/* // @grant none // ==/UserScript== (function () { 'use strict'; // updates the links to match the names const replacements = { "Charts": { text: "Games", url: "/games" }, "Marketplace": { text: "Catalog", url: "/catalog" }, "Create": { text: "Develop", url: "/develop" }, "Robux": { text: "ROBUX", url: "/my/money.aspx" } // balance page }; function replaceTopbar() { // Select all anchor tags (links) in the topbar const navLinks = document.querySelectorAll('a'); navLinks.forEach(el => { const originalText = el.innerText.trim(); if (replacements.hasOwnProperty(originalText)) { // Change text el.innerText = replacements[originalText].text; // Update link href to the correct page el.href = replacements[originalText].url; } }); } // Run on page load window.addEventListener('load', replaceTopbar); // Also run when DOM changes (Roblox SPA behavior) const observer = new MutationObserver(replaceTopbar); observer.observe(document.body, { childList: true, subtree: true }); })();