Earlier quoted context omitted.
Hacker News commenters: “I don’t like ads. They are evil” Also HN commenters: “I don’t want to pay for goods and services”
And how do I pay for a YouTube competitor that's libre or at least won't spy back without losing access to its monopolisticly large catalog?
uBlock filter list to hide all YouTube Shorts
161–170 of 362 posts
Re: uBlock filter list to hide all YouTube Shorts
#162Earlier quoted context omitted.
Short form video is addictive, so they want to push it. It maximizes time on site.
As someone that pays for YouTube premium (and isn’t served ads), I don’t understand why they push Shorts to me too. Presumably they should want me to spend the bare minimum amount of time on YouTube necessary to keep me subscribed, as any further use just contributes to higher infrastructure and bandwidth costs.
Re: uBlock filter list to hide all YouTube Shorts
#163Re: uBlock filter list to hide all YouTube Shorts
#164Earlier quoted context omitted.
Hacker News commenters: “I don’t like ads. They are evil” Also HN commenters: “I don’t want to pay for goods and services”
I pay for plenty of goods and services. Just not YouTube. As others have noted, YouTube premium makes ads go away, but none of the other engagement baiting and user disrespecting anti-patterns. As far as I'm concerned, Google is in adversarial relationship with its users, whether your paying or not.
Re: uBlock filter list to hide all YouTube Shorts
#165Blocktube is a godsend; it adds a context menu for blocking videos/channels, and you can block vids/channels/comments based on a regex or keywords (e.g. transparently remove every 'minecraft' or 'roblox' vid, or remove every comment with 'Telegram' in it). It even removes vids before the DOM rendering, so blocked vids don't show up as empty title cards or blank spaces.
Unhook lets you independently toggle visibility of the home feed, the rec sidebar, endscreen recs, comments, shorts, and the unrelated BS they ad to search results. (The latest YT update lets endscreen recs slip through again; be sure to add youtube.com##.html5-video-player.ended-mode .ytp-fullscreen-grid to your ublock filter to get rid of them again.)
Surprisingly YouTube still generates a feed for every channel's video page, so I just add channels to my RSS reader for updates instead of bothering with the increasingly flaky subscriptions page. (If they ever break this or yt-dlp I'm not even going to bother with YT in the future.)
Remember when Google exec Prabhakar Raghavan (the man who previously ran Yahoo search into the ground) made Google Search worse so they could serve more ads?
This is the YouTube philosophy; make the platform worse to drive 'engagement', completely ignoring the second and third order effects of their 'optimizations'. Want to search by upload date? Sorry, we removed that! Have some slop! Want to look for a video? Here's a bunch of unrelated bullshit instead - have you tried some slop? Also, have some ads.
The experience for creators is even worse. The recommendation algorithm and monetization policies change every month and YT conveniently gets to collect all the ad money if you've been demonitized. They're shoving a bajillion AI tools down creator's throats and even editing videos after they've been uploaded.
In the end, YouTube caters to advertisers. You're just the product.
If you want a picture of the future, imagine a bot shoving slop in a human's face -- forever.
Re: uBlock filter list to hide all YouTube Shorts
#166I 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.
// ==UserScript==
// @name No YT Sidebar and Shorts
// @match https://www.youtube.com/*
// ==/UserScript==
function noYTSidebar () {
const element = document.getElementById('secondary')
if (element === null) {
window.setTimeout(noYTSidebar, 1000)
return
}
element.getElementById('secondary').style.display = 'none'
}
function noYTShorts () {
const elements = document.querySelectorAll('ytd-rich-shelf-renderer')
if (elements.length === 0) {
window.setTimeout(noYTShorts, 1000)
return
}
for (e of document.querySelectorAll('ytd-rich-shelf-renderer')) {
e.style.display = 'none'
}
}
noYTSidebar()
noYTShorts()Re: uBlock filter list to hide all YouTube Shorts
#167I’m paying over 40 dollars a month for YouTube but it doesn’t allow me to choose almost anything of what I see, despite trying hard to fine-tune my recommendations. I can’t permanently turn off shorts - and this I find personally insulting. It really feels like encountering a drug dealer outside my house every time I come home, always expecting me to cave and try some of that good smack. But apart from ignoring me wh…
YT is desperate for me to engage with rage bait news, and I’m not biting. It’s so god damn annoying, regardless of how often I choose to ignore channels or don’t suggest feedback. All they care about is vote time…give me content I want to view! Also, in the evenings, my timeline gets weirdly paranoid phobia centric, like deep insecurities people live with that are triggering and keep you up late. It’s so obvious YT i…
Re: uBlock filter list to hide all YouTube Shorts
#168I actually stopped paying for premium to make YouTube less appealing.
Re: uBlock filter list to hide all YouTube Shorts
#169I'm curious if anyone knows of something like SponsorBlock or a UBlock list, that can flag tje onslaught of AI videos that are appearing. I find those crappy videos worse than the ads and the shorts.
It could be as simple as 2 buttons and a percentage bar right under the video, on the right, close to the dislike button that does nothing lol.
Re: uBlock filter list to hide all YouTube Shorts
#170I would pay for YouTube premium again if I could switch off shorts. I actually stopped paying for premium to make YouTube less appealing.