The player size for Cosmic Cat wasn't working properly when I recently reinstalled it, using this userstyle fixes that.
COSMIC CAT PLAYER SIZE FIX by griffenhiggins
Details
Authorgriffenhiggins
LicenseNo License
Categoryhttps://www.youtube.com/
Created
Updated
Size593 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Built off of the userstyle "Youtube Player Sizes" by Giteeng. Only fixes the progress bar visually.
Source code
/* ==UserStyle==
@name COSMIC CAT PLAYER SIZE FIX
@version 20240101.02.11
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/watch?v=") {
.video-stream.html5-main-video {
max-width:640px; max-height:360px;
}
.video-stream {
max-width: 100% !important;
max-height: 100% !important;
}
.html5-storyboard {
display: block;
position: absolute;
left: 0;
bottom: 100%;
width: 100% !important;
height: 400px;
overflow-x: hidden;
}
.html5-progress-bar {
width: 100.4% !important;
}
.html5-scrubber-button {
display: none;
}
}