NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Twitch Tweaker
// @namespace http://tampermonkey.net/
// @version 0.5
// @description Hides Twitch extensions and adjusts video player cut off.
// @author transilvlad
// @copyright 2021, transilvlad (https://openuserjs.org/users/transilvlad)
// @license GPL-2.0-only
// @match https://www.twitch.tv/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Hide extensions
GM_addStyle('div.extension-container, div.extension-taskbar, div.extension-frame-wrapper, div.tw-c-text-overlay .extensions-dock__layout { display: none !important; }');
// Hide prime extension
GM_addStyle('div.extension-container, div.extension-taskbar, div.extension-frame-wrapper, div.tw-c-text-overlay .extension-view__iframe { display: none !important; }');
// Adjust bottom video cutoff
GM_addStyle('.video-player__container--resize-calc { max-height: calc(100vh - 18rem) !important; }');
})();