Skip to content

Instantly share code, notes, and snippets.

@abe33
Created August 10, 2020 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abe33/048852b126b92edbb095136a05278cec to your computer and use it in GitHub Desktop.
Save abe33/048852b126b92edbb095136a05278cec to your computer and use it in GitHub Desktop.
Remove Twitch chat header
function addGlobalStyle(css) {
const style = document.createElement('style');
style.innerHTML = css;
document.head.appendChild(style);
}
addGlobalStyle('.stream-chat .stream-chat-header { display: none !important; }');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment