UPDATE 2 It seems that starting today, uBlock Origin is working to combat this Youtube Block. Mine started working again! Lets all thank the devs of UBO for fighting this fight!
UPDATE So as new info comes out, I’ll be posting it here. It seems as if this Rollout Has Several Parts.
Part 1
You get a popup message over top of your video, blocking the screen:
- This is the first sign. If you see this popup AND are logged into a YouTube account, your account has been selected.
- At this stage you can likely close or block these messages with an adblocker.
Part 2
This message will change, indicating that you have 3 remaining videos to watch without ads.
Will insert photo once one has been found
- At this stage your adblocker will imminently stop working in 3 videos time.
- Personally using Firefox + uBlock Origin and tweaking filters and updates does not even fix it.
Part 3
None of the video loads now, everything looks blank.
- At this stage you must tred new ground to avoid ads. I have posted methods in the comments. If you want to bypass this end page, read down there.
End of Update
YouTube has started rolling out anti-adblock to users inside the United States, which means that they are preparing to roll this out to the entire country. Personally, I have been blocked already. I want to gauge how common this occurrence is.
I’ve got so many layers of adblock it’s hard to know which one(s) are responsible for blocking the ads.
Same here. Was just explaining to a coworker who was complaining about YT ads that I “just” use PiHole+Unbound for network blocking, AirVPN with DNS blocking, mullvad Private DNS on Android, and then Libretube to view my self-hosted Piped instance. As I said it I realized how ridiculous it’s gotten and how deranged I probably sound.
This all sounds like extremely reasonable to me. Fuck the haters.
I just use use uBlock Origin.
deleted by creator
I’ll quit YouTube before I watch ads.
Remember when some people said we’re nuts thinking Google will try to ban ad blockers with manifest v3? Yeah.
Google will try everything in their power to stop us from blocking their ads. It’s their main source of revenue, you don’t have to be a genius to see why they don’t like ad blockers
I’ll just stop using YouTube like I’ve stopped using Reddit.
I’m ready for that. When being a youtuber started looking like a job I think the site lost something.
Yeah, YouTube was better when it was a bunch of amateur cat videos.
There was a sweet spot when cat videos went pro. Then the spam killed it.
I’d say just smaller, less scripted content. Maybe that’s what tiktok is.
For those who don’t know: VLC also takes a YouTube video address as input (in the menu: Media | Open Network Stream…).
Same. If I really need the website, I now use https://yewtu.be
Or https:/piped.video
piped has been giving me more issues recently, I think Google’s fighting them?
yeah same, only like half of the videos load or play.
Had the same issues, but decided to host my own instance. Not had a single issue since, plus the latency is great 😏
This is such a better use of their time and dollars versus improving their service to make it more attractive to customers.
If this is the change that really sets them financially straight, then I would say they have a failing business model.
You are not the customer. You are the product.
Yes, but if they destroy their products (aka drive users away) their real customers (ad companies) will pull out.
[This comment has been deleted by an automated system]
Less viewer numbers to show to advertisers.
[This comment has been deleted by an automated system]
This is such a better use of their time and dollars versus improving their service to make it more attractive to customers.
Making their service more attractive to customers is precicesly what they’re trying to do.
It’s just that an advertising agency’s customers are not the folk who watch, read or hear the ads, it’s the folk who pay for the ads.
I am not sure if it will work out like this though. The amount of ads they are forcing down peoples throat is isane. Eventually it will make people consume less videos and with that less ads overall.
I am not sure if it will work out like this though. The amount of ads they are forcing down peoples throat is isane. Eventually it will make people consume less videos and with that less ads overall.
Sure, could be - but keep in mind that they have all the relevant usage data at hand. Any decrease in service popularity among users (or indeed any kind of user behavior) is immediately visible to them. They have the means to know exactly what annoyances the market will bear.
And considering that YouTube still holds a de-facto monopoly on video discoverability within the entire anglophone internet I feel like it’s safe to say that the market will likely bear a lot more annoyances :P
And thus the enshittification cycle completes
So you know that the people watching YouTube aren’t really considered “customers” by google in the traditional sense, right?
If premium cost $5per month I’d pay for it, u use YouTube all the time
No way in hell it’s worth $15 a month though, their pricing is completely brwindead
[This comment has been deleted by an automated system]
Here’s a rule for uBlock Origin.
Credit: https://lemmy.one/comment/597479 && original link: https://lemmy.nz/comment/446556
! Anti-Youtube Anti-Adblocker https://lemmy.one/comment/597479
youtube.com##+js(set, yt.config_.openPopupConfig.supportedPopups.adBlockMessageViewModel, false)
youtube.com##+js(set, Object.prototype.adBlocksFound, 0)
youtube.com##+js(set, ytplayer.config.args.raw_player_response.adPlacements, [])
youtube.com##+js(set, Object.prototype.hasAllowedInstreamAd, true)
This has not worked for me.
deleted by creator
I’m going to start a discussion in the comments here about methods to bypass the message. I will add suggestions here, so leave comments if you find a method!
Methods to bypass Youtube Anti-Adblock:
- The easiest method is simply to comply and turn off your adblock extension.
My Method
- My method, and the one that will likely work universally is as follows:
Install Extension Enhancer for YouTube™
Go to the extensions settings and ensure that under the Ads Management section, “Block Ads” is turned OFF
Now find the Custom Script box at the very bottom and enter the following script. I did not write this code, it comes from egaudette on GitHub
(function() { 'use strict'; var clickInterval = setInterval(skipAds, 5); var ytpAdModule; var miniAdd; var skipButton; var currentVideo; function skipAds() { ytpAdModule = document.querySelector('.ytp-ad-module'); skipButton = document.querySelector('button[class*="ad-skip"]'); miniAdd = document.querySelector('.ytp-ad-overlay-container'); if (ytpAdModule !== null && ytpAdModule.innerHTML !== '') { ytpAdModule.style.display = 'none'; } if (skipButton !== null) { skipButton.click(); return; } currentVideo = document.querySelector('video[class*="main-video"]') if (currentVideo !== null && currentVideo.duration <= 5) { currentVideo.muted = true; currentVideo.play(); currentVideo.currentTime = currentVideo.duration; } } })();
Lastly, ensure the “Automatically execute the script when YouTube is loaded in a tab” box is checked, and press Save
I’ll add more methods as they are discovered!
Thank you, thank you, thank you, thank you!!! ❤️