NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Twitter Font Change Back // @namespace http://twitter.com // @version 1.1 // @description Change Twitter font back by remove Chirp font from document // @author Mitch // @match https://twitter.com/* // @icon https://www.google.com/s2/favicons?domain=tampermonkey.net // @grant none // @license MIT // ==/UserScript== (function() { const style = document.createElement("style"); style.innerHTML = "* {font-family: \"Segoe UI\", Arial !important}"; document.head.appendChild(style); })();