Created
August 8, 2019 17:38
-
-
Save sodle/49e6608aa5add1f43833c277e7fe0dbb to your computer and use it in GitHub Desktop.
Remove the chat box from Mixer
This file contains 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 Unmixer | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Hide the chat box on Mixer | |
// @author You | |
// @match https://*.mixer.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle('.chat {display: none !important;}'); | |
GM_addStyle('.channel-page {margin-right: initial !important;}'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment