Skip to content

Instantly share code, notes, and snippets.

@sodle
Created August 8, 2019 17:38
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 sodle/49e6608aa5add1f43833c277e7fe0dbb to your computer and use it in GitHub Desktop.
Save sodle/49e6608aa5add1f43833c277e7fe0dbb to your computer and use it in GitHub Desktop.
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