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.
uBlock filter list to hide all YouTube Shorts
271–280 of 362 posts
Re: uBlock filter list to hide all YouTube Shorts
#272Re: uBlock filter list to hide all YouTube Shorts
#273In 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…
Re: uBlock filter list to hide all YouTube Shorts
#274Earlier 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.)
Re: uBlock filter list to hide all YouTube Shorts
#275In 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…
||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
#276I 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…
Re: uBlock filter list to hide all YouTube Shorts
#277Earlier 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 do too; I pay them via Patreon.
Re: uBlock filter list to hide all YouTube Shorts
#278Re: uBlock filter list to hide all YouTube Shorts
#279I’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.
Re: uBlock filter list to hide all YouTube Shorts
#280In 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