Skip to content

Instantly share code, notes, and snippets.

@pointydev
Created September 26, 2019 20:12
Show Gist options
  • Save pointydev/1acfbd14ede58ea4b19f946782792874 to your computer and use it in GitHub Desktop.
Save pointydev/1acfbd14ede58ea4b19f946782792874 to your computer and use it in GitHub Desktop.
Userscript that resets the Twitch chat font to the old Helvetica Neue style
// ==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);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment