// ==UserScript== // @name Roblox Gotham Font Changer // @namespace http://tampermonkey.net/ // @version 0.11 // @description Change the font on Roblox to Gotham // @author verticalfx // @match *://*.roblox.com/* // @grant none // @run-at document-start // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // they are bound to remove it from their css file, so i'll probably update it when it comes to that time 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)); } })();