您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Gives HiMovies a widescreen theatre mode inspired by sites like youtube. Press `t` to toggle.
// ==UserScript== // @name HiMovies Theatre Mode // @namespace butterflies.himoviesTheatreMode // @author ✨ Butterflies ✨ // @description Gives HiMovies a widescreen theatre mode inspired by sites like youtube. Press `t` to toggle. // @license unlicense // @match https://himovies.sx/* // @version 1.0 // ==/UserScript== const toggleTheatre = (theatreMode) => { const container = document.querySelector("#main-wrapper div.container"); if (!theatreMode) { container.style.maxWidth = "none"; container.style.width = "90%"; } else { container.style.maxWidth = "1200px"; container.style.width = "100%"; } }; (() => { let theatreMode = false; document.addEventListener('keydown', keyEvent => { if (keyEvent.key === 't') { toggleTheatre(theatreMode); theatreMode = !theatreMode; } }); })();