Skip to content

Instantly share code, notes, and snippets.

@pointydev
Created September 26, 2019 20:12
Show Gist options
  • Select an option

  • Save pointydev/1acfbd14ede58ea4b19f946782792874 to your computer and use it in GitHub Desktop.

Select an option

Save pointydev/1acfbd14ede58ea4b19f946782792874 to your computer and use it in GitHub Desktop.

Revisions

  1. pointydev revised this gist Sep 26, 2019. No changes.
  2. pointydev created this gist Sep 26, 2019.
    13 changes: 13 additions & 0 deletions reverttwitchchatfont.js
    Original 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);
    })();