Simply changes the YouTube homepage to have 5 videos per row and not show shorts or community posts.
YouTube homepage fixer by DonNinja

Details
AuthorDonNinja
LicenseNo License
Categoryhttps://www.youtube.com/
Created
Updated
Code size745 B
Code checksumf513ba44
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name YouTube homepage fixer
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Changes the YouTube homepage to have 5 videos per row and not show shorts or community posts
@author Me
==/UserStyle== */
@-moz-document domain("www.youtube.com") {
.ytd-rich-grid-renderer {
--ytd-rich-grid-items-per-row: 5;
}
ytd-rich-section-renderer {
display: none !important;
}
/* youtube.com##ytd-rich-grid-row, #contents.ytd-rich-grid-row:style(display:contents !important;)
youtube.com##ytd-rich-grid-renderer:style(--ytd-rich-grid-items-per-row: 5 !important;)
youtube.com##ytd-rich-section-renderer:style(display:none !important;)
*/
}