blocktube icon indicating copy to clipboard operation
blocktube copied to clipboard

[Feature Request] Add exceptions to rules

Open TurtleDino opened this issue 4 years ago • 1 comments

Can you please add an exceptions options to all rules or at least the "Runtime blocking" rule? I find that there are some channels I would like to watch shorter videos on, but cannot disable the rule for just one channel.

TurtleDino avatar Aug 14 '21 04:08 TurtleDino

being able to add exceprions or apply roles on specific chanels is the main readone i use advanced blocking

(video, objectType) => { if (video.vidLength<=60) { //block unless listed if (video.channelName.match("channelA|channelB")) {return false; } return true; } else if (video.vidLength>=3600) { //block only if (video.channelName.match("exampel|exampel2")) {return true; } } return false; }

ewonais avatar Aug 23 '21 13:08 ewonais