Live data from Hacker News

uBlock filter list to hide all YouTube Shorts

github.com

271–280 of 362 posts

Re: uBlock filter list to hide all YouTube Shorts

#271
post #94

Earlier quoted context omitted.

Do you want $foo? Yes | Ask again later Modern tech companies behave like abusers or creepy stalkers. They won't take No for an answer.

To be fair, as long as you aren't logged in, that's the best you're going to get with cookies or local storage.

Cookies can contain "no".

Re: uBlock filter list to hide all YouTube Shorts

#272
Nice. I've also been doing this for a while too. I don't like to depend on a lot of addons, so I find the ublock only implementation of it quite elegant and fast. I also try to use filters nowadays to block other types of dark patterns (eg. Infinite scroll recommendations). It's surprising how much you can de-enshittify the modern corporate internet by just blocking tags with some css path filters.

Re: uBlock filter list to hide all YouTube Shorts

#273

In addition to the unhook addon that others also recommended and is great, I would also suggest, as an alternative, setting a redirection rule from "www.youtube.com/shorts/XYWZ" to "www.youtube.com/watch?v=XYWZ". This will play the short but in the classical youtube video (landscape) format, with no infinite scrolling, or replay or autoplay (assuming these are in general disabled), which takes away a big part of the…

I personally solved this by using revanced and disabling shorts completely.

Re: uBlock filter list to hide all YouTube Shorts

#274

Earlier quoted context omitted.

To be fair, as long as you aren't logged in, that's the best you're going to get with cookies or local storage.

Which would make sense, but they do it for the logged-in users as well! (And of course there’s platforms like LinkedIn or Twitter which do this and require you to log in for any meaningful interaction.)

Have you considered not rewarding their bad behavior?

Re: uBlock filter list to hide all YouTube Shorts

#275

In addition to the unhook addon that others also recommended and is great, I would also suggest, as an alternative, setting a redirection rule from "www.youtube.com/shorts/XYWZ" to "www.youtube.com/watch?v=XYWZ". This will play the short but in the classical youtube video (landscape) format, with no infinite scrolling, or replay or autoplay (assuming these are in general disabled), which takes away a big part of the…

I use the rule

    ||youtube.com/shorts/*$uritransform=/shorts\/(.*)/watch\/\$1/`
in uBlock Origin.

(Except that it doesn't work if you click on a short from YouTube's interface - it loads with JavaScript which bypasses the redirection.)

Re: uBlock filter list to hide all YouTube Shorts

#276
post #166
post #73

I wrote this little quick and dirty userscript for myself sometime back: // ==UserScript== // @name No Shorts // @match https://www.youtube.com/shorts/* // @match https://www.facebook.com/reel/* // ==/UserScript== window.document.body.innerHTML = '' This isn't as comprehensive as the uBlock filter but it has worked pretty well for me so far.

Here is another one I found in my personal userscripts. I believe this script is more effective than my previous one because it prevents recommendations for Shorts or other videos from being shown. // ==UserScript== // @name No YT Sidebar and Shorts // @match https://www.youtube.com/* // ==/UserScript== function noYTSidebar () { const element = document.getElementById('secondary') if (element === null) { window.setTi…

I did a firefox addon 3 months ago. You can disable/enable things in addon menu. I'm using Study mode actively as I'm a student.

https://github.com/ErenayDev/YouTube-Focus

Re: uBlock filter list to hide all YouTube Shorts

#277

Earlier quoted context omitted.

Why are you still paying for Youtube? I run uBlock and haven't seen ads in years, don't see any cellphone format crap now thanks to this list, and VacuumTube on my TV defaults to 4K.

I'm not OP but I pay because I want to support content creators. It also removes ads from players that don't have blocking, such as Roku. Of course there are other ways to support creators such as donating and buying swag. I do that too.

> I pay because I want to support content creators

I do too; I pay them via Patreon.

Re: uBlock filter list to hide all YouTube Shorts

#278
Is there an explanation for why YouTube is hell bent on pushing Shorts to people, other than to get them addicted? There must be something we can do about these abusive arseholes. I hate that the number one business strategy right now is to make something addictive. This isn't good for us.

Re: uBlock filter list to hide all YouTube Shorts

#279

I’m sure I’ve clicked “show fewer shorts” every single time it’s shown me shorts. It seems to make zero difference.

That’s like the crosswalk button that does nothing. It’s there purely for the placebo effect.

They'll also record the press and probably use it as part of their "KPIs". "The number of suckers trying to have control has decreased 5% this month, well done all".

Re: uBlock filter list to hide all YouTube Shorts

#280

In addition to the unhook addon that others also recommended and is great, I would also suggest, as an alternative, setting a redirection rule from "www.youtube.com/shorts/XYWZ" to "www.youtube.com/watch?v=XYWZ". This will play the short but in the classical youtube video (landscape) format, with no infinite scrolling, or replay or autoplay (assuming these are in general disabled), which takes away a big part of the…

Replacing "shorts" with "v" also works, so the resulting URL is www.youtube.com/v/XYWZ

Oh great, didn't know that! Thanks! That makes things much simpler.
Post reply on HN