blocktube
blocktube copied to clipboard
[Feature Request] Add exceptions to rules
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.
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; }