您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
"Enlarge the theatre-mode youtube video"
// ==UserScript== // @name Youtube Video Size Enlarger // @namespace http://tampermonkey.net/ // @version 2025-04-06 // @description "Enlarge the theatre-mode youtube video" // @author JAC5 // @match https://www.youtube.com/watch?* // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com // @grant none // @license CC0 // ==/UserScript== function add_space() { // This is where you set the size taken up by the player. 100vh is the full // height of the page. However, there is the youtube top bar to consider, so // cut off a few 'vh' document.getElementById("full-bleed-container").style.maxHeight = "96vh"; } (function() { 'use strict'; // Add a delay to ensure page loads correctly before making changes. 2000=2seconds addEventListener("load", setTimeout(add_space, 2000)); })();