YouTube Theater Mode Zoom In

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

Asenna tämä skripti? Install as user style?
Author's suggested script

Saatat myös pitää

Asenna tämä skripti
  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.  
  10. @-moz-document url-prefix("https://www.youtube.com/watch?v="), url-prefix("https://www.youtube.com/live/") {
  11. ytd-watch-flexy[full-bleed-player] #full-bleed-container.ytd-watch-flexy {
  12. height: 100vh !important;
  13. max-height: calc(100vh - 56px) !important;
  14. }
  15. ytd-watch-flexy[fullscreen] #full-bleed-container.ytd-watch-flexy {
  16. max-height: 100vh !important;
  17. }
  18. ytd-watch-grid[full-bleed-player] #player-full-bleed-container.ytd-watch-grid {
  19. height: 100vh !important;
  20. max-height: calc(100vh - 56px) !important;
  21. }
  22. ytd-watch-grid[fullscreen] #player-full-bleed-container.ytd-watch-grid {
  23. max-height: 100vh !important;
  24. }
  25. }