NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Twitch Restore Font // @description Restores original Roobert font for twitch.tv // @author Raman Paulau // @version 1.0 // @license MIT // @run-at document-start // @include /https?:\/\/(.+?\.)?twitch\.tv\/?(.+)?/ // ==/UserScript== (function () { let css = ` body { --font-base: Roobert,Helvetica Neue,Helvetica,Arial,sans-serif; } `; let styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); })();