您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Enable full-width video play
// ==UserScript== // @name AnimeUnity Cinema Mode // @namespace http://tampermonkey.net/ // @version 2024-08-30 // @description Enable full-width video play // @author bvuno // @license GNU // @match https://www.animeunity.to/anime/* // @icon https://www.google.com/s2/favicons?sz=64&domain=animeunity.to // @grant GM_addStyle // @run-at document-start // ==/UserScript== (function() { 'use strict'; GM_addStyle (` #anime .banner-wrapper, #anime .header, #nav-top, #side-bar, #video-top { display: none !important; } #content { margin-top: 0 !important; } #anime .content { display: flex !important; flex-flow: column !important; } #anime .content .overview { order: 1 !important; } #anime .content .sidebar { order: 2 !important; margin-top: 0 !important; } #anime > div.content.container { margin: 0 !important; padding: 0 !important; min-width: 100% !important; } #anime > div.content.container > div.overview > div.recommended.d-none.d-sm-block, #anime > div.content.container > div.overview > div.row > div > div > div.mt-4.mb-4.episode-wrapper.text-center { padding: 0 16px !important; } #main, #main div { min-height: 98svh; } `); // Your code here... })();