您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
For whatever reason, youtube fixes the frame to 16:9 in theater mode, but this should fix it removing top and bottom black bar
/* ==UserStyle== @name Youtube Theater mode 21:9 widescreen (and others) fix @version 1.0.0 @description For whatever reason, youtube fixes the frame to 16:9 in theater mode, but this should fix it removing top and bottom black bar @author toppits @namespace https://greasyfork.org/users/371090 ==/UserStyle== */ @-moz-document domain("youtube.com"){ video.video-stream.html5-main-video { top: 0 !important; } ytd-watch-flexy[theater] #player-theater-container.ytd-watch-flexy { height: calc(var(--ytd-watch-flexy-height-ratio) / var(--ytd-watch-flexy-width-ratio) * (100vw - 12px)) !important; max-height: calc(100vh - 150px) !important; } ytd-watch-flexy[fullscreen] #player-theater-container.ytd-watch-flexy { height: 100vh !important; max-height: 100vh !important; } }