您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change the font on Roblox Website back to the old font (Gotham) Based off verticalfx's userscript just slightly better.
// ==UserScript== // @name Revert to Old Roblox Font // @namespace https://tampermonkey.net // @version 1.21 // @description Change the font on Roblox Website back to the old font (Gotham) Based off verticalfx's userscript just slightly better. // @author void1z // @match *://*.roblox.com/* // @grant none // @license MIT // @run-at document-start // ==/UserScript== (function() { 'use strict'; function applyCustomFont() { var customFont = 'HCo Gotham SSm'; var css = '* { font-family: "' + customFont + '" !important; }'; var head = document.head || document.getElementsByTagName('head')[0]; var style = document.createElement('style'); head.appendChild(style); style.type = 'text/css'; if (style.styleSheet) { style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } } // Wait bro. setTimeout(applyCustomFont, 100); })();