Makes the Video Page show 6 videos instead of 4 horizontally.
Fix Youtube Video Page by jaythexxvii

Details
Authorjaythexxvii
LicenseNo License
Categoryyoutube
Created
Updated
Code size1.7 kB
Code checksum94b0f843
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Fix Youtube Video Page
@version 20221223.00.53
@namespace userstyles.world/user/jaythexxvii
@description Makes the Video Page show 6 videos instead of 4 horizontally.
@author jaythexxvii
@license No License
==/UserStyle== */
@-moz-document regexp("https?://www.youtube.com/(c|channel|user)/.+/videos"), regexp("https?://www.youtube.com/.+/videos"), regexp("") {
/* ==UserStyle==
@name Show more items on YouTube Video Page
@namespace USO Archive
@author JaytheXXVII, Xyl
@description `"Shows more items on the YouTube homepage. Edit the "--additional" variable if there are too many or not enough added for your liking. -Xyl" "No Longer Seems To Work -Jay"`
@version 20211125.0.25.1
@license CC0-1.0
@preprocessor uso
==/UserStyle== */
:root {
--additional: 2;
}
ytd-rich-grid-renderer ytd-rich-item-renderer {
margin-bottom: 30px !important;
margin-right: 5px !important;
width: calc(100% / 6 - 10px);
margin-left: 0 !important;
}
ytd-rich-grid-row {
display: contents !important;
}
ytd-rich-grid-row #contents {
display: contents !important;
}
ytd-rich-item-renderer #avatar-link {
display: none;
}
h3.style-scope.ytd-rich-grid-video-renderer {
margin-top: 4px;
}
ytd-rich-grid-renderer > #contents {
width: 1284px !important;
}
ytd-rich-section-renderer > #content {
margin: 0px !important;
max-width: unset !important;
}
#dismissed {
height: 100%
}
}