blocktube icon indicating copy to clipboard operation
blocktube copied to clipboard

[Feature request] Block 'Members-only content'

Open drejjmit opened this issue 1 year ago • 3 comments

The option to hide worthless 'Members only' content that's not watchable:

image

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))

drejjmit avatar May 28 '24 14:05 drejjmit

I too would like this feature. Thanks @drejjmit for the uBlock filters to use in the meantime though ❤

Leah96xxx avatar Mar 01 '25 19:03 Leah96xxx

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;
}

zaXsa avatar Sep 19 '25 09:09 zaXsa

Thank you so much for this!!!

Xcczs avatar Sep 21 '25 20:09 Xcczs