Makes YouTube wider to use space more effectively.
Sadly progress bar cant be scaled but everything else is.
Comments now show in two columns
Authoryellowsink
LicenseCC Zero
Categoryyoutube
Created
Updated
Code size754 B
Code checksum70e2db87
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Makes YouTube wider to use space more effectively.
Sadly progress bar cant be scaled but everything else is.
Comments now show in two columns
/* ==UserStyle==
@name WideTube
@namespace github.com/yellowsink
@version 1.0.0
@description YouTube is now wider and more efficient
@author Yellowsink
==/UserStyle== */
@-moz-document regexp(".*youtube\\.com/watch.*") {
#columns {
max-width: none !important;
margin: 0 3rem !important;
}
#primary { max-width: none !important; }
#secondary {
width: auto !important;
max-width: 50rem !important;
}
.html5-video-container, .html5-video-container > .video-stream {
width: 100% !important;
height: 100% !important;
}
.ytp-chrome-bottom { width: calc(100% - 12px) !important; }
ytd-comments #contents {
display: grid;
grid-template-columns: auto auto;
}
}