blocktube
blocktube copied to clipboard
[Feature request] Block 'Members-only content'
The option to hide worthless 'Members only' content that's not watchable:
For people with content blockers (uBlock) you can use this meanwhile:
youtube.com##ytd-compact-video-renderer:has(p.style-scope.ytd-badge-supported-renderer:has-text(Members only))
youtube.com##ytd-rich-item-renderer:has(p.style-scope.ytd-badge-supported-renderer:has-text(Members only))
I too would like this feature. Thanks @drejjmit for the uBlock filters to use in the meantime though ❤
You can do this using advanced blocking using
(video, objectType) => {
// Add custom conditions below
if ( video.hasOwnProperty("badges") && video.badges.includes("members") ) {
return true;
}
// Custom conditions did not match, do not block
return false;
}
Thank you so much for this!!!