ewonais

Results 14 comments of ewonais

can be done using advansesd blocking in BlockTube block it for specifik channels or for all ``` (video, objectType) => { if (video.vidLength

using "advanced blocking" you can almost do that exampel: `(video, objectType) => { if (video.vidLength=2700) { if (video.channelName.match("Matt_Parker_2|CGP Gray")) {return true; } } } if (video.channelName.match("GTLive")) { if (video.title.match("FNAF|Scary Game|Meme...

being able to add exceprions or apply roles on specific chanels is the main readone i use advanced blocking (video, objectType) => { if (video.vidLength=3600) { //block only if (video.channelName.match("exampel|exampel2"))...

Auto pip exist now. Added iin v4.7 2023-03-27 Go to Player>autoPip to enable it. For me auto PiP only works when the video is paused and not when playing, shuld...

someone said: the backend code for advansed blocking in not able to get information on "video publicher" leding to it craching on channel page

for most peapole #102 would be a better option

sadly the video age is only awalibel as text. depends on lanuge settings. this might block anything older than 2 yaers: `(video, objectType) => { if (video.publishTimeText.match("years")) {return true; }...

"ball" wuld match "football" but " ball" wold not advansed sertch ios case sensative. use this "[Bb]lue[_ ][Bb]erry" to match all combinations to filter for some special charackrers (ex. ^$|[])...

with yt blocki9ng adblockers this has become more importent. after yt become unusible for me i switched to using INVIDIOUS, now i relly miss blocktube

(video, objectType) => { if (video.publishTimeText.match("years")) { return true; } if (video.title.match("game highlights") && video.publishTimeText.match("day|hours")) { return true; } return false; }