🏠 Home 

YouTube Theater Mode Zoom In

YouTube Theatre Mode will take up the full height of the screen.


Install this script?
Install as user style?
Author's suggested script

You may also like YouTube Theater Plus.


Install this script
  1. /* ==UserStyle==
  2. @name YouTube Theater Mode Zoom In
  3. @namespace https://greasyfork.org/en/users/1335250-%E7%84%A1%E7%BD%AA
  4. @version 0.1
  5. @license MIT
  6. @description YouTube Theatre Mode will take up the full height of the screen.
  7. @author 無罪
  8. ==/UserStyle== */
  9. @-moz-document url-prefix("https://www.youtube.com/watch?v="), url-prefix("https://www.youtube.com/live/") {
  10. ytd-watch-flexy[full-bleed-player] #full-bleed-container.ytd-watch-flexy {
  11. height: 100vh !important;
  12. max-height: calc(100vh - 56px) !important;
  13. }
  14. ytd-watch-flexy[fullscreen] #full-bleed-container.ytd-watch-flexy {
  15. max-height: 100vh !important;
  16. }
  17. ytd-watch-grid[full-bleed-player] #player-full-bleed-container.ytd-watch-grid {
  18. height: 100vh !important;
  19. max-height: calc(100vh - 56px) !important;
  20. }
  21. ytd-watch-grid[fullscreen] #player-full-bleed-container.ytd-watch-grid {
  22. max-height: 100vh !important;
  23. }
  24. }