I'm looking for a Ublock Origin custom filter that I can add that will permanently block the recommended videos section from showing on my YouTube homepage?
I tried blocking the recommended videos section using the "block element" picker, but it didn't work; each time the YouTube homepage is refreshed it comes back, the block doesn't stick.
I appreciate any help; thank you very much for your time.
4 Answers
Try
youtube.com##.section-list > li:has(.shelf-title-cell > a[href="/feed/recommended"]) 4 I find this one way more understandable: at "" pick "dismissable" id element that has "title" id element which contains "Recommended" text.
(#title:contains(Recommended)) How about this to not show videos on the homepage alltogether:
youtube.com##.ytd-shelf-rendererAnd this to hide recommendations next to a video:
youtube.com##.ytd-watch-next-secondary-results-renderer For me, this one worked and removed the recommended videos at the start page without blocking other stuff (like videos on a channel).