Remove the chat box from Mixer
// ==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