Removes the useless "Suggested videos" at the bottom of a YouTube playlist
Remove "Suggested videos" on YouTube playlist by LuisAlfredo92
Details
AuthorLuisAlfredo92
LicenseCC Zero
CategoryYouTube
Created
Updated
Size445 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Removes the "Suggested videos" section when opening a YouTube playlist so you can go to the bottom easier
Source code
/* ==UserStyle==
@name 8/17/2023, 3:01:58 PM
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Removes the useless "Suggested videos" at the bottom of a YouTube playlist
@author LuisAlfredo92
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/playlist") {
ytd-item-section-renderer:nth-child(2), ytd-continuation-item-renderer:nth-child(2) {
display: none;
}
}