Makes the video use the majority of the screen with a little on top and below
Crunchyroll Fullscreen by jremi
Details
Authorjremi
LicenseNo License
Categorywww.crunchyroll.com -> userstyles
Created
Updated
Size572 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Makes the video use the majority of the screen with a little on top and below
I also implemented this into my auto skip intro + mouse volume control userscript if you want those features you can get it here
https://greasyfork.org/en/scripts/452891-crunchyroll-auto-skip-intro-fullscreen-video-mouse-volume-control
Source code
/* ==UserStyle==
@name Crunchyroll Fullscreen
@version 20221028.04.26
@namespace userstyles.world/user/jremi
@description Makes the video use the majority of the screen with a little on top and below
@author jremi
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://www.crunchyroll.com/watch/") {
.video-player-wrapper {
max-height: calc(100vh - 5.625rem) !important;
height: calc(100vh) !important;
}
.erc-header {
flex: 0 0 1.55rem !important;
}
.erc-header .header-content {
height: 0 !important;
}
}