blocktube icon indicating copy to clipboard operation
blocktube copied to clipboard

How to block live streams?

Open LTGM opened this issue 1 year ago • 3 comments

Title. F*** tired of this crap! Never watched and never will! How can I block them all? Tired of unsubscribing from people who abuse it, lol Also 'premieres in' if possible (until it is finally live) would be nice but not a deal-breaker

LTGM avatar Feb 17 '24 17:02 LTGM

You could do this with the advanced blocking option within the extension.

(video, objectType) => {
  
  if(video.badges?.includes('live')) return true
  
  return false;
}

JohnFarrellDev avatar Feb 28 '24 15:02 JohnFarrellDev

Oh and to hide videos that are waiting to premier you can also do this with the advanced blocking option

(video, objectType) => {
  
  if(Number.isNaN(video.vidLength)) return true;
  
  if(video.badges?.includes('live')) return true

  return false;
}

JohnFarrellDev avatar Mar 02 '24 00:03 JohnFarrellDev

Oh and to hide videos that are waiting to premier you can also do this with the advanced blocking option

Thank you a ton! Will definitely try out that asap!

LTGM avatar Mar 02 '24 01:03 LTGM