blocktube
blocktube copied to clipboard
How to block live streams?
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
You could do this with the advanced blocking option within the extension.
(video, objectType) => {
if(video.badges?.includes('live')) return true
return false;
}
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;
}
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!