Last active
October 29, 2019 07:17
-
-
Save rishubil/5216ff63e8cfc9c404a73dfcb86297f7 to your computer and use it in GitHub Desktop.
twitch-temporary-fix.user.js
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 characters
// ==UserScript== | |
// @name Twitch temporary fix | |
// @namespace twitch-temporary-fix | |
// @author Nesswit | |
// @version 0.2 | |
// @downloadURL https://gist.github.com/rishubil/5216ff63e8cfc9c404a73dfcb86297f7/raw/twitch-temporary-fix.user.js | |
// @updateURL https://gist.github.com/rishubil/5216ff63e8cfc9c404a73dfcb86297f7/raw/twitch-temporary-fix.user.js | |
// @include *://*.twitch.tv/* | |
// @match about:blank | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== | |
GM_addStyle(` | |
.chat-room__notifications { | |
display: none; | |
} | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment