amitbl / blocktube

YouTube™ content blocker
GNU General Public License v3.0
860 stars 60 forks source link

[Request] Add option to not hide watched videos on channel page #290

Closed will09122000 closed 1 year ago

will09122000 commented 1 year ago

I like using the option to hide watched videos on my subscriptions page, but when I visit a channel page, I want to see all their uploaded videos. I'm having to temporarily turn off block tube extension to achieve this at the moment.

ewonais commented 1 year ago

and vhen sertching

anatidaeta commented 1 year ago

yeah this is infuriating

ewonais commented 1 year ago

usind advansed blockinnf you can ignor serten objectType

this might not br the right one (might exclode to mutch) from my test this hides watched videos in subfeed dut not when sertching or on channel page

(video, objectType) => { if (video.percentWatched>40) { if (objectType === 'shelfRenderer') {return true;} } return false; }

will09122000 commented 1 year ago

Thanks for the suggestion. I edited your solution a bit to make it work for myself.

  if (video.percentWatched > 80 && objectType == 'videoRenderer') {
    return true;
  }