Twitch: Full Theater

Hides/Resizes elements preventing video from displaying in the full window while using Theater Mode

  1. // ==UserScript==
  2. // @name Twitch: Full Theater
  3. // @namespace http://tampermonkey.net/
  4. // @version 2017.12.13
  5. // @description Hides/Resizes elements preventing video from displaying in the full window while using Theater Mode
  6. // @author Amraki
  7. // @match https://www.twitch.tv/*
  8. // @match http://www.twitch.tv/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. (document.head || document.documentElement).insertAdjacentHTML('beforeend',
  16.  
  17. '<style>' +
  18. '.video-player__container { bottom: 0rem!important; }' +
  19. '</style>'
  20. );
  21. })();