Simple CSS to zoom out youtube by a bit (97%) to display 5 thumbnails in homepage
Improve Space Efficiency
The style will switch back to 100% zoom in the playback page
other pages will be in 97% zoom.
Authorsang959699
LicenseNo License
Categoryyoutube.com
Created
Updated
Size397 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Simple CSS to zoom out youtube by a bit (97%) to display 5 thumbnails in homepage
Improve Space Efficiency
The style will switch back to 100% zoom in the playback page
other pages will be in 97% zoom.
@-moz-document url-prefix("https://www.youtube.com/") {
body {
zoom: 97%;
}
}
@-moz-document url-prefix("https://www.youtube.com/watch") {
body {
zoom: 100%;
}
}
/* ==UserStyle==
@name Five thumbnail in youtube for 1080p screen
@namespace github.com/sang959699
@description Five thumbnails in youtube homepage 1080p screen
@version 0.1
==/UserStyle== */