My YT usecase is usually watching news and new stories from bunch of channels I watch.
YT Suggestions are usually on point with a type of content I watch, but I've noticed they have been pushing to me a lot of older videos I have already watched.
Would it be possible to have a [ ] [weeks/months/years] setting that would remove videos from suggestions that are older than that?
Quickly looking at current web, the selector that would work (with everything hardcoded, 'cause this is just a PoC) would look like:
$$('ytd-rich-item-renderer').filter(el =>
el.querySelector('yt-content-metadata-view-model')
?.textContent.includes('years ago')
)
Thanks for your work!
My YT usecase is usually watching news and new stories from bunch of channels I watch.
YT Suggestions are usually on point with a type of content I watch, but I've noticed they have been pushing to me a lot of older videos I have already watched.
Would it be possible to have a
[ ] [weeks/months/years]setting that would remove videos from suggestions that are older than that?Quickly looking at current web, the selector that would work (with everything hardcoded, 'cause this is just a PoC) would look like:
Thanks for your work!