Created
September 26, 2019 20:12
-
-
Save pointydev/1acfbd14ede58ea4b19f946782792874 to your computer and use it in GitHub Desktop.
Revisions
-
pointydev revised this gist
Sep 26, 2019 . No changes.There are no files selected for viewing
-
pointydev created this gist
Sep 26, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ // ==UserScript== // @name Revert Twitch Chat Font // @author Pointy // @description Resets the Twitch chat font to the old Helvetica Neue style // @include *://www.twitch.tv/* // @version 1.0.0 // ==/UserScript== (function() { var twitchchatfontoverride = document.createElement('style'); twitchchatfontoverride.innerHTML = ".chat-room {font-family: Helvetica Neue,Helvetica,Arial,sans-serif!important;}"; document.head.appendChild(twitchchatfontoverride); })();