Simple style that hides Shorts from the subscription feed.
YouTube: Hide Shorts on the Sub Feed by chrishazfun
Details
Authorchrishazfun
LicenseNo License
Categoryyoutube.com
Created
Updated
Size692 B
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: Hide Shorts on the Sub Feed
@namespace youtube.com
@version 1.0.0
@description Simple style that hides Shorts from the subscription feed.
@author chrishazfun
==/UserStyle== */
@-moz-document domain("www.youtube.com") {
/* Grid View */
[page-subtype="subscriptions"] #items.ytd-grid-renderer > ytd-grid-video-renderer:has(ytd-thumbnail-overlay-time-status-renderer[overlay-style="SHORTS"]) {
display: none;
}
/* List View */
[page-subtype="subscriptions"] ytd-item-section-renderer:not(:has(ytd-grid-renderer)):has(ytd-thumbnail-overlay-time-status-renderer[overlay-style="SHORTS"]) {
display: none;
}
}