this post was submitted on 05 Jun 2025
209 points (100.0% liked)

DeGoogle Yourself

11986 readers
517 users here now

A community for those that would like to get away from Google.

Here you may post anything related to DeGoogling, why we should do it or good software alternatives!

Rules

  1. Be respectful even in disagreement

  2. No advertising unless it is very relevent and justified. Do not do this excessively.

  3. No low value posts / memes. We or you need to learn, or discuss something.

Related communities

!privacyguides@lemmy.one !privacy@lemmy.ml !privatelife@lemmy.ml !linuxphones@lemmy.ml !fossdroid@social.fossware.space !fdroid@lemmy.ml

founded 5 years ago
MODERATORS
 

FUUU

Does anyone know of an ad blocker blocker blocker?

top 50 comments
sorted by: hot top controversial new old
[–] Jhex@lemmy.world 1 points 35 minutes ago

I got one 2 days ago, refreshed and it went away (FireDragon with ublock)

It actually pushed me further, I now browse Youtube logged out and disabled every piece of tracking i could find

[–] noxypaws@pawb.social 8 points 4 hours ago (1 children)

I saw this with firefox and ublock origin installed. Dismissed it and continued not seeing any ads.

[–] Mesophar@pawb.social 1 points 49 minutes ago

I just refresh the page and it works fine

[–] Psythik@lemm.ee 10 points 5 hours ago

I've been using Firefox With Ublock Origin (and YouTube ReVanced for mobile) for years, and have yet to see this message outside of a screenshot.

[–] anarchiddy@lemmy.dbzer0.com 6 points 5 hours ago

Others have already weighed in, but:

This warning doesn't seem to be persistent. Using ublock/regularly clearing cookies seems to keep this at bay. Sometimes it helps to open new links in container tabs as well.

I got this earlier this week and clearing my cookies/using container tabs seems to reset it.

[–] Horse@lemmygrad.ml 3 points 5 hours ago

this happens for a short time about every six months
if you haven't already, make sure ublock is updated, then toggle "quick fixes" (if it's on, turn it off, if it's off, turn it on)

[–] rpa@europe.pub 18 points 10 hours ago

I got this with Firefox + uBlock Origin yesterday but was gone a couple videos later, uBlock must have updated.

[–] OldChicoAle@lemmy.world 1 points 5 hours ago

Doesn't YouTube premium still have ads?

[–] Sivilian@lemmy.zip 24 points 16 hours ago

Firefox + uBlock Origin or Grayjay are my go to.

[–] ohshit604@sh.itjust.works 14 points 16 hours ago* (last edited 16 hours ago) (2 children)

Invidious or Piped.

Use a public instance or self host your own. Pair it with Freetube and you can skip in-video sponsorships/ads.

While YouTube has been making it difficult for these services to stay alive they seem to alway work around them.

[–] finix_the_psyker@sopuli.xyz 2 points 5 hours ago

Also Newpipe for mobile. You can find it on f-droid.

[–] LarmyOfLone@lemm.ee 1 points 15 hours ago* (last edited 15 hours ago) (2 children)

I use freetube without anything but the issue is that my VPN is blocked now, and a self hosted invidious or piped won't help with that, right? I imagine I'm going to need some kind of split for the VPN, where some apps don't use VPN.

But even freetube is somewhat clumsy for queueing videos and proper theater mode without borders. Using Youtube is becoming more and more cumbersome lol.

I wish there was a simple executable that pre-downloads and buffers my youtube channel videos and then just launches an optimized local web server that has good UX.

[–] ohshit604@sh.itjust.works 4 points 9 hours ago (1 children)

but the issue is that my VPN is blocked now, and a self hosted invidious or piped won't help with that, right?

If I’m not mistaken this is incorrect, when you self host Invidious you also must host their companion tool to help skirt around YouTube’s blocking system.

https://docs.invidious.io/installation/#linux

You have to run this command on the same public IP address as the one blocked by YouTube. Not necessarily the same machine, just the same public IP address.
You will need to copy these two parameters in the config.yaml file.
Subsequent usage of this same token will work on the same IP range or even the same ASN. The point is to generate this token on a blocked IP as "unblocked" IP addresses seems to not generate a token valid for passing the checks on a blocked IP.

Documentation here is a bit outdated but I assume this is how it still works, just automated without the need to manually run their commands.

[–] LarmyOfLone@lemm.ee 2 points 9 hours ago

Huh, thanks. I don't quite understand it but I guess a token makes sense. Similar to how I can use reddit with VPN when logged in, but not without. I don't even have a youtube account any more though since they forcibly degoogled me by demanding my phone number.

[–] rumba@lemmy.zip 3 points 9 hours ago

We'll get there eventually. Google will just have to finish cracking down on DRM.

Brave will probably need to stop working before we finally put that much effort into it.

PC plus HDMI capture device plus com skip. You can't stop us but man you can make it painful.

[–] drspod@lemmy.ml 102 points 1 day ago (1 children)

Just be patient for the inevitable uBlockOrigin update that will fix it.

[–] Lyra_Lycan@lemmy.blahaj.zone 31 points 1 day ago (9 children)

True aha. yt-dlp still works mostly, so I suppose I could just use it to download my subscribed and watch offline. There's always a way

load more comments (9 replies)
[–] Sterile_Technique@lemmy.world 36 points 1 day ago (2 children)

You can block element on that pop-up with uBlock Origin, and it starts working again.

If you can't click anything, there's a transparent layer still in the way, so you may need to do a second block element (click anywhere and the entire screen should highlight).

Weird side effect is that the scroll stops working sometimes, but if you make the video full screen then back it fixes it.

[–] brachypelmasmithi@lemm.ee 4 points 8 hours ago (2 children)

for anyone interested:

the scroll not working is most likely due to the main container in the page (usually the tag but it can be some other element) having the overflow: hidden CSS property assigned to it.

overflow dictates the behavior of an element that has its content overflow past the parent element's boundaries.

the property can have four values:

  • visible, where the overflow is fully visible and allowed to extend past the parent element,
  • scroll, which clips the overflowing content and allows the user to scroll the parent element,
  • hidden, which clips the overflowing content and prevents scrolling, and
  • auto, which works almost identically to scroll

most sites run a script that assigns this property with the value of hidden to the tag, making the user unable to scroll the page.

ive seen this behavior the most with sites that blast you with an unavoidable cookie banner which you have to click through to access the page. usually removing the cookie banner element is not enough to freely access the page, and so you have to additionally find which element has its overflow set to hidden and disable that property.

i reckon youtube's adblocker popup is doing the same thing, and coincidentally turning off fullscreen also runs a script that makes sure the overflow is set to either scroll or auto

[–] Sterile_Technique@lemmy.world 2 points 16 minutes ago

It feels strangely vindicating when symptoms that just look like 'a weird bug' to my dumb ass actually make sense to folks who know what they're doing.

Thanks for the insight!

[–] Manmoth@lemmy.ml 3 points 6 hours ago

I always wondered how this worked.

[–] DarkSirrush@lemmy.ca 11 points 23 hours ago

There are a few browser extensions that force a scrollbar even on pages its disabled if you need to work around it.

Though not being able to scroll down to YouTube comments should be considered a blessing.

[–] muusemuuse@lemm.ee 2 points 15 hours ago

AdGuard on Mac for safari, unlock origin for anything other than chrome.

[–] vikingtons@lemmy.world 31 points 1 day ago (7 children)

Is this with Firefox + ublock origin? Things are still fine on my side.

[–] IttihadChe@lemmy.ml 9 points 1 day ago (1 children)

It happened to me for the first time today and that's what I use.

I literally just clicked the x and played the video so it didn't effect anything though.

load more comments (1 replies)
load more comments (6 replies)
[–] Rodneyck@lemm.ee 17 points 1 day ago

Freetube on my PC and devices, Smartube for Fire TV.

[–] voidspace@lemmy.world 2 points 17 hours ago (1 children)

Yep. Got this yesterday (UK).

[–] Korhaka@sopuli.xyz 1 points 9 hours ago

I had a couple of adverts make it through yesterday in the UK, just closed the tab and went to some locally hosted content instead. Seems like its working again today. I don't log into youtube at all.

[–] salvor_hardin@lemmy.ml 13 points 1 day ago* (last edited 1 day ago) (2 children)

I use pipe pipe on android, haven't had any issues and works great. Freetube on the PC, works great!

[–] rumba@lemmy.zip 2 points 9 hours ago

Woot woot, added that to my arsenal.

Vanced, new pipe, free tube, tubular, pipe pipe, mobile brave, yt-dlp->jellyfin, laptop->HDMI splitter-> capture card +comskip

The spice will flow.

load more comments (1 replies)
[–] Schwim@lemmy.zip 21 points 1 day ago (1 children)

Freetube is patched often and remains usable 99% of the time for an ad(and sponsor, if wanted) free experience.

As Youtube makes changes solely to break these players, they are quick to jump through the new hoops.

load more comments (1 replies)
load more comments
view more: next ›