Dismisses members only videos so you don't ever have to see it. Stop getting excited by videos you can't watch.
No Members Only by PennyJim
Details
AuthorPennyJim
LicenseMIT License
Categoryyoutube
Created
Updated
Code size754 B
Code checksum9615312a
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name No Members Only
@namespace github.com/openstyles/stylus
@version 1.0.1
@description Dimisses members only videos so you don't ever have to see it. I don't want to have the slight moment of thinking there's a new video from a creator before realizing it's members only.
@author PennyJim
==/UserStyle== */
@-moz-document domain("youtube.com") {
ytd-rich-grid-media:has(ytd-badge-supported-renderer.video-badge:not([hidden]) .badge-style-type-members-only),
ytd-compact-video-renderer:has(ytd-badge-supported-renderer.badges:not([hidden]) .badge-style-type-members-only) {
#dismissible {
display: none;
}
#dismissed {
display: block;
}
}
}