That post seems to be missing.
TheCraiggers 184 points 3 years ago

I've got so many layers of adblock it's hard to know which one(s) are responsible for blocking the ads.

path: 0 2933927, hotness: undefined, score: 184, children: 19
DARbarian 152 points 3 years ago

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.

path: 0 2933927 2934131, hotness: undefined, score: 152, children: 18
NumbersCanBeFun 79 points 3 years ago

This all sounds like extremely reasonable to me. Fuck the haters.

path: 0 2933927 2934131 2934312, hotness: undefined, score: 79, children: 3
can 20 points 3 years ago

Reasonable, yes. Feasible for everyone? Not necessarily. I would like to get at least a pihole going at some point but for now ublock origin and ReVanced have been enough for me.

path: 0 2933927 2934131 2934312 2939973, hotness: undefined, score: 20, children: 0
UndefinedIsNotAFunction 19 points 3 years ago

Same. Keep up the good work.

path: 0 2933927 2934131 2934312 2934803, hotness: undefined, score: 19, children: 1
DARbarian 8 points 3 years ago

Haha I appreciate y'all! Next stop: Tor City

path: 0 2933927 2934131 2934312 2934803 2939921, hotness: undefined, score: 8, children: 0
TrustingZebra 39 points 3 years ago

I just use use uBlock Origin.

path: 0 2933927 2934131 2937835, hotness: undefined, score: 39, children: 4
DARbarian 0 points 3 years ago

I didn't think that could block Youtube ads alone? Like Hulu and Spotify

path: 0 2933927 2934131 2937835 2938112, hotness: undefined, score: 0, children: 3
TrustingZebra 49 points 3 years ago

Before this new behavior uBlock Origin always blocked YouTube ads.

path: 0 2933927 2934131 2937835 2938112 2938357, hotness: undefined, score: 49, children: 0
Risk 10 points 3 years ago

I mean, it did up until maybe now.

path: 0 2933927 2934131 2937835 2938112 2940681, hotness: undefined, score: 10, children: 1
reflex 20 points 3 years ago
path: 0 2933927 2934131 2935728, hotness: undefined, score: 20, children: 1
DARbarian 6 points 3 years ago

Hahaha yeah I may have went a little berserk there

path: 0 2933927 2934131 2935728 2938067, hotness: undefined, score: 6, children: 0
Emanuel 8 points 3 years ago

Correct me if I'm wrong, but isn't the point of using Piped having a proxy between you and YouTube? Or are you serving your instance to friends/family so that your queries get mixed together?

path: 0 2933927 2934131 2943399, hotness: undefined, score: 8, children: 1
DARbarian 3 points 3 years ago

Yeah that's the point. I do use my instance for links when sharing to people, but the main reason I selfhosted was for control and mostly just fun

path: 0 2933927 2934131 2943399 2963327, hotness: undefined, score: 3, children: 0
SomeBoyo 5 points 3 years ago

Why do you need adblock, when using piped?

path: 0 2933927 2934131 2934956, hotness: undefined, score: 5, children: 2
Darkassassin07 27 points 3 years ago

Because the internet includes more than just youtube...?

path: 0 2933927 2934131 2934956 2935661, hotness: undefined, score: 27, children: 0
DARbarian 17 points 3 years ago

For everything other than Youtube!

path: 0 2933927 2934131 2934956 2938118, hotness: undefined, score: 17, children: 0
Very_Bad_Janet 5 points 3 years ago

Did your coworker know what you were talking about? Also, please explain how AirVPN with DNS blocking works.

path: 0 2933927 2934131 2937421, hotness: undefined, score: 5, children: 1
DARbarian 4 points 3 years ago

Well they were already talking UBO and PiHoles, so I had faith lol AirVPN has the option to add blocklists to its DNS. Obviously with everything else I don't really need it, but it can't hurt.

path: 0 2933927 2934131 2937421 2944888, hotness: undefined, score: 4, children: 0
deegeese 108 points 3 years ago

The irony of the straw poll site throwing up an anti-adblock banner 🤣

path: 0 2931708, hotness: undefined, score: 108, children: 2
glad_cat 45 points 3 years ago

I have a VPN and I can’t vote.

path: 0 2931708 2932433, hotness: undefined, score: 45, children: 0
balderdash9 1 point 3 years ago

That's self selection bias if I've ever seen it

path: 0 2931708 3051222, hotness: undefined, score: 1, children: 0
Honse 96 points 3 years ago

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 <= 30) {
            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!

path: 0 2932201, hotness: undefined, score: 96, children: 5
Neato 21 points 3 years ago

Why would this work when others get blocked? Is it a novel way to block YT ads that's not popular? Because I think YT isn't looking for specific extensions but looking for certain kinds of behavior.

path: 0 2932201 2932497, hotness: undefined, score: 21, children: 2
Honse 55 points 3 years ago

This method lets ads load for half a second but then get skipped instantly. i have not personally found a way to 100% block ads once ive gotten their block page.

path: 0 2932201 2932497 2933930, hotness: undefined, score: 55, children: 1
nilloc 1 point 3 years ago

I use greasemonkey to do a similar trick with the skip and dismiss buttons. But added random delays up to 2 seconds in an attempt to mimic a human clicking the button.

Also instead of an interval running, you can use MutationObserver and a callback to only run the code when the DOM changes and adds the button.

path: 0 2932201 2932497 2933930 2997553, hotness: undefined, score: 1, children: 0
farent 1 point 3 years ago

Please note that posting the script has html-encoded && <> and similar characters so you'll have to replace those with the correct ones (or just get the script from GitHub)

path: 0 2932201 2968514, hotness: undefined, score: 1, children: 0
SharkEatingBreakfast 1 point 3 years ago

Thank you, thank you, thank you, thank you!!! ❤️

path: 0 2932201 4166463, hotness: undefined, score: 1, children: 0
speq 94 points 3 years ago

For those who don't know: VLC also takes a YouTube video address as input (in the menu: Media | Open Network Stream...).

path: 0 2936940, hotness: undefined, score: 94, children: 1
can 21 points 3 years ago

VLC is so damn good

path: 0 2936940 2940993, hotness: undefined, score: 21, children: 0
henfredemars 80 points 3 years ago

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.

path: 0 2938210, hotness: undefined, score: 80, children: 20
splendoruranium 45 points 3 years ago

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.

path: 0 2938210 2945588, hotness: undefined, score: 45, children: 3
tryptaminev 3 points 3 years ago

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.

path: 0 2938210 2945588 2963389, hotness: undefined, score: 3, children: 2
splendoruranium 5 points 3 years ago

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

path: 0 2938210 2945588 2963389 2973827, hotness: undefined, score: 5, children: 0
BlueBockser 5 points 3 years ago

And thus the enshittification cycle completes

path: 0 2938210 2945588 2963389 2968556, hotness: undefined, score: 5, children: 0
doggle 20 points 3 years ago

You are not the customer. You are the product.

path: 0 2938210 2947994, hotness: undefined, score: 20, children: 5
theshatterstone54 4 points 3 years ago

Yes, but if they destroy their products (aka drive users away) their real customers (ad companies) will pull out.

path: 0 2938210 2947994 2952759, hotness: undefined, score: 4, children: 4
ours 3 points 3 years ago

Just ask Twitter/X or what's left ot it.

path: 0 2938210 2947994 2952759 2963398, hotness: undefined, score: 3, children: 0
skullgiver 2 points 3 years ago

[This comment has been deleted by an automated system]

path: 0 2938210 2947994 2952759 3043971, hotness: undefined, score: 2, children: 2
theshatterstone54 0 points 3 years ago

Less viewer numbers to show to advertisers.

path: 0 2938210 2947994 2952759 3043971 3044932, hotness: undefined, score: 0, children: 1
Landrin201 13 points 3 years ago

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

path: 0 2938210 2945185, hotness: undefined, score: 13, children: 6
IIIIII 12 points 3 years ago

I agree. It’s around $22 NZD and that is just too steep. They have a slightly cheaper one but you can’t background play with it. I’m sick of being nickel and dimed at every possible opportunity and then hearing about how these companies are making record profits.

path: 0 2938210 2945185 2945188, hotness: undefined, score: 12, children: 0
Petter1 6 points 3 years ago

Just make a (digital) trip to India and get family of 5 accounts for about 1$ a month per account. This the way I did it.

path: 0 2938210 2945185 2955233, hotness: undefined, score: 6, children: 0
kionite231 6 points 3 years ago

I won't give a penny to the evil google.

path: 0 2938210 2945185 2951139, hotness: undefined, score: 6, children: 0
charles 1 point 3 years ago

It's $25/mo for family. I hate that I pay for it, but I use music, and I mostly watch YouTube on a streaming device, so I've never been able to use ad blockers. $15 for the fam felt worth it, but $25 has me rethinking. Maybe I can configure YT-DL to get the shows I care about on my Plex

path: 0 2938210 2945185 2954217, hotness: undefined, score: 1, children: 1
TwoCubed 4 points 3 years ago

Any android based streaming device can run SmartTube (formerly SmartTube next). On an Android phone you can patch the YouTube apk with revanced, which also gives you full access to yt music.

path: 0 2938210 2945185 2954217 2955232, hotness: undefined, score: 4, children: 0
skullgiver 1 point 3 years ago

[This comment has been deleted by an automated system]

path: 0 2938210 2945185 2987179, hotness: undefined, score: 1, children: 0
jabberati 4 points 3 years ago
path: 0 2938210 2942598, hotness: undefined, score: 4, children: 1
01189998819991197253 13 points 3 years ago

From what I read on their own report, less than 2% use adblocks.

path: 0 2938210 2942598 2942780, hotness: undefined, score: 13, children: 0
gravitas_deficiency 3 points 3 years ago

So you know that the people watching YouTube aren’t really considered “customers” by google in the traditional sense, right?

path: 0 2938210 2955206, hotness: undefined, score: 3, children: 0
LoafyLemon 74 points 3 years ago

Remember when some people said we're nuts thinking Google will try to ban ad blockers with manifest v3? Yeah.

path: 0 2946922, hotness: undefined, score: 74, children: 1
HerrLewakaas 37 points 3 years ago

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

path: 0 2946922 2947800, hotness: undefined, score: 37, children: 0
Landrin201 69 points 3 years ago

I genuinely think that advertising should be illegal at this point. It's a ridiculous concept.

path: 0 2945141, hotness: undefined, score: 69, children: 4
OminousOrange 31 points 3 years ago

It is a great example of how an industry can survive with only self-reported effectiveness. I remember a freakonomics episode where it was shown that very infrequently do companies get a positive return on marketing spending. It will be very interesting if that industry ever collapses.

path: 0 2945141 2945671, hotness: undefined, score: 31, children: 3
blergh 11 points 3 years ago
path: 0 2945141 2945671 2957233, hotness: undefined, score: 11, children: 1
OminousOrange 7 points 3 years ago

Oh definitely. Its essentially a massive case of 'it's difficult to get someone to understand something when their salary depends on not understanding it.'

path: 0 2945141 2945671 2957233 2957971, hotness: undefined, score: 7, children: 0
MrPoopyButthole 6 points 3 years ago

Multinational scam artists

path: 0 2945141 2945671 2957238, hotness: undefined, score: 6, children: 0
DAMunzy 68 points 3 years ago

I'll just stop using YouTube like I've stopped using Reddit.

path: 0 2943478, hotness: undefined, score: 68, children: 7
mayo 32 points 3 years ago

I'm ready for that. When being a youtuber started looking like a job I think the site lost something.

path: 0 2943478 2944915, hotness: undefined, score: 32, children: 6
tryptaminev 3 points 3 years ago

That is something you just cannot avoid with a new medium. Eventually there will always be professionalization. It just sucks that youtube now just gives us the same shit over and over instead of making it easy to find new creators, like it used to be.

path: 0 2943478 2944915 2963429, hotness: undefined, score: 3, children: 1
captain_aggravated 1 point 3 years ago

Hell I think you could make a massive improvement to the site if it could realize "Hey, I've been suggesting the same exact video to this user 500 times in a row, and he's never clicked it. Maybe this user likes this creator/series, but not this specific video."

path: 0 2943478 2944915 2963429 2981767, hotness: undefined, score: 1, children: 0
seaturtle 2 points 3 years ago

Yeah, YouTube was better when it was a bunch of amateur cat videos.

path: 0 2943478 2944915 2968021, hotness: undefined, score: 2, children: 1
mayo 1 point 3 years ago

I'd say just smaller, less scripted content. Maybe that's what tiktok is.

path: 0 2943478 2944915 2968021 5875439, hotness: undefined, score: 1, children: 0
captain_aggravated 1 point 3 years ago

I remember one of the early Youtube sensations was this teen chick's vlog that turned out to be a fictional soap opera basically. Because it hadn't occurred to anyone to do that yet.

This was BACK IN THE DAY, around the same time Boxxy became a sensation, or that one chick who just sat still in front of the camera because the Japanese liked her huge eyes.

path: 0 2943478 2944915 2983019, hotness: undefined, score: 1, children: 1
Laurentide 0 points 3 years ago

lonelygirl15? I remember a friend telling me about that series because she wanted to share a funny video reply (Remember those?) by somebody who managed to find the same animal plushies that the girl carries around; it was a parody episode where the plushies talk about the current situation in the story and suggest that maybe the girl should drop all the teen drama stuff so they can all focus on running for their lives instead.

path: 0 2943478 2944915 2983019 2987856, hotness: undefined, score: 0, children: 0
WtfEvenIsExistence 62 points 3 years ago
path: 0 2932054, hotness: undefined, score: 62, children: 4
lemann 21 points 3 years ago

Admiral is the worst kind of anti adblock there is.

They buy thousands of domains at a time, with individually corresponding Google Cloud IPs to evade adblock lists. Real pain in the ass to block them, they also DMCA community blocklists containing their domains

path: 0 2932054 2940986, hotness: undefined, score: 21, children: 3
ramjambamalam 24 points 3 years ago

Sounds like DMCA abuse to me. You can't copyright a fact. In this case, the fact that these IPs are used by a company is a fact.

path: 0 2932054 2940986 2944934, hotness: undefined, score: 24, children: 2
ArmokGoB 5 points 3 years ago

People should tell them to kick rocks.

path: 0 2932054 2940986 2944934 2947165, hotness: undefined, score: 5, children: 0
RogueBanana 5 points 3 years ago

When has that stopped anyone from abusing it anyway...

path: 0 2932054 2940986 2944934 2947164, hotness: undefined, score: 5, children: 0
Melody 47 points 3 years ago

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)

path: 0 2932827, hotness: undefined, score: 47, children: 10
Honse 6 points 3 years ago

This has not worked for me.

path: 0 2932827 2933935, hotness: undefined, score: 6, children: 0
pdqcp 3 points 3 years ago

I feel dumb, do I need to do anything else besides pasting it to my rules > temporary rules > save?

path: 0 2932827 2943587, hotness: undefined, score: 3, children: 0
NumbersCanBeFun -3 points 3 years ago
path: 0 2932827 2934201, hotness: undefined, score: -3, children: 7
glad_cat 10 points 3 years ago

You can save comments too.

path: 0 2932827 2934201 2934280, hotness: undefined, score: 10, children: 6
Teppic 7 points 3 years ago

They are on kbin which doesn't support saving comments (yet).

path: 0 2932827 2934201 2934280 2938223, hotness: undefined, score: 7, children: 0
NumbersCanBeFun 1 point 3 years ago
path: 0 2932827 2934201 2934280 2934375, hotness: undefined, score: 1, children: 4
quirzle 0 points 3 years ago

Just upvote or boost? Aren't you having to go to your profile to find it either way?

path: 0 2932827 2934201 2934280 2934375 2934625, hotness: undefined, score: 0, children: 3
refurbishedrefurbisher 34 points 3 years ago

I haven't used youtube.com to watch YouTube in years. NewPipe x SponsorBlock on mobile, SmartTubeNext on TV, Invidious, Piped, or FreeTube on desktop.

path: 0 2934612, hotness: undefined, score: 34, children: 2
XYZinferno 11 points 3 years ago

Hadn't heard of FreeTube before, thanks for mentioning it!

path: 0 2934612 2934774, hotness: undefined, score: 11, children: 0
riley0 8 points 3 years ago path: 0 2934612 2941344, hotness: undefined, score: 8, children: 0
hakase 33 points 3 years ago

The irony of this poll blocking access from users with a VPN.

path: 0 2937624, hotness: undefined, score: 33, children: 1
barberousse 3 points 3 years ago

Yep, I can't vote because I have a VPN.

path: 0 2937624 2941296, hotness: undefined, score: 3, children: 0
MattTheTekie 30 points 3 years ago

There's constant fixes for it btw from the ublockorigin team now! :D

path: 0 2967040, hotness: undefined, score: 30, children: 0
Flynn_Mandrake 26 points 3 years ago

I've started to just download videos with yt-dlp after grabbing links via Invidious. Using Invidious itself has become somewhat unreliable lately, and this way I don't have to put up with buffering and can watch in good quality. Cut out the middle men

path: 0 2935364, hotness: undefined, score: 26, children: 3
altima_neo 6 points 3 years ago

I have to wonder if once the ad blocking gets fully rolled out if yt-dlp will also cease to work?

path: 0 2935364 2941820, hotness: undefined, score: 6, children: 1
Flynn_Mandrake 2 points 3 years ago

Good question. I'd hope not

path: 0 2935364 2941820 2942900, hotness: undefined, score: 2, children: 0
krimson 0 points 3 years ago

Do you self host Invidious? I have zero issues with it self hosted.

path: 0 2935364 2948753, hotness: undefined, score: 0, children: 0
Faceman2K23 25 points 3 years ago

Just a tip for those of you that do cave to pressure and go with the paid premium option. or already have one but dont want to pay for more accounts or a family account.

You can set up channels or brand accounts as sub-accounts on a premium subscription and they will act like separate accounts with the advantages of premium, so if you have a large family and don't want to pay for the full family subscription (which only has 5 slots anyway) you can set up a few sub-accounts that each get their own subscriptions, recommendations, settings and all have the premium features.

So if you want to make a premium account for a parent or child, you can do that with one single subscription if you can take the caveat of them being brand accounts rather than fully their own thing.

This works on things like Android TV or Google TV, but you need to log into the main account then switch to a sub account in the app, however, there is no authentication to switch between channel accounts this way, so it's really only useable for families only. I use this at home to run 4 separate nvidia shield youtube apps with their own subscriptions and recommendations on one single premium payment.

I expect they will change how that works in the future to remove the loophole, probably by charging for channel accounts or having it locked behind some kind of overpriced professional usage tier, but for now, it might be a good option for some.

path: 0 2939826, hotness: undefined, score: 25, children: 3
Thorny_Thicket 7 points 3 years ago

Many people have also said if you set your location to for example India when signing up for premium you'll get it basically for free compared to what it'll cost in europe and it'll keep working even if your location is elsewhere from there on.

path: 0 2939826 2945403, hotness: undefined, score: 7, children: 2
Faceman2K23 5 points 3 years ago

Yes indeed, and google get less money. however there are some signs that companies are starting to crack down on that.

path: 0 2939826 2945403 2946710, hotness: undefined, score: 5, children: 0
briongloid 4 points 3 years ago

I use Turkey, it's around $2.50 per month for the 6-person plan.

path: 0 2939826 2945403 2949536, hotness: undefined, score: 4, children: 0
couragethebravedog 24 points 3 years ago

I wonder if the people having this issue are using chrome. On FF it's never been an issue for me.

path: 0 2976739, hotness: undefined, score: 24, children: 2
hunt4peas 5 points 3 years ago

Not there in Edge as well.

path: 0 2976739 2981241, hotness: undefined, score: 5, children: 0
NeckarIT 3 points 3 years ago

I had this issue using Firefox. But updating the block lists has fixed it for now.

path: 0 2976739 2990176, hotness: undefined, score: 3, children: 0
riley0 22 points 3 years ago

I got it once on Chrome. Haven't used Chrome for YT since. No trouble with FF and UBlock Origin.

path: 0 2940901, hotness: undefined, score: 22, children: 2
Psythik 4 points 3 years ago

Damn, I just recently switched to Ungoogled Chromium, just for YouTube (still use Firefox for everything else.) I did this for HDR and RTX Video Super Resolution, since Firefox supports neither. Looks like I'm going to have to live without now.

path: 0 2940901 2942173, hotness: undefined, score: 4, children: 1
riley0 1 point 3 years ago

No trouble for me using Yandex and AdGuard AdBlocker, either, fwiw.

path: 0 2940901 2942173 2942336, hotness: undefined, score: 1, children: 0
mosthated 20 points 3 years ago path: 0 2931791, hotness: undefined, score: 20, children: 4
American_Jesus 15 points 3 years ago

Or https:/piped.video

path: 0 2931791 2932366, hotness: undefined, score: 15, children: 3
krimsonbun 14 points 3 years ago

piped has been giving me more issues recently, I think Google's fighting them?

path: 0 2931791 2932366 2933280, hotness: undefined, score: 14, children: 2
GivingEuropeASpook 10 points 3 years ago

yeah same, only like half of the videos load or play.

path: 0 2931791 2932366 2933280 2933965, hotness: undefined, score: 10, children: 1
Fjor 2 points 3 years ago

Had the same issues, but decided to host my own instance. Not had a single issue since, plus the latency is great 😏

path: 0 2931791 2932366 2933280 2933965 4300727, hotness: undefined, score: 2, children: 0
doggle 20 points 3 years ago

It'll be a shame if I have to ditch YouTube. There's only 2 or 3 channels I would even consider paying for and they don't have Patreon or anything. I'm less than interested in giving Google a cut.

path: 0 2947047, hotness: undefined, score: 20, children: 0
1984 19 points 3 years ago

Very good. It will be nice to be off YouTube completely.

path: 0 2945494, hotness: undefined, score: 19, children: 0
HiddenLayer5 18 points 3 years ago

Does NewPipe count as an adblocker? Not yet but I fear its days are numbered.

path: 0 2959771, hotness: undefined, score: 18, children: 5
viking 7 points 3 years ago

Newpipe is accessing the videos straight from the backend. There is no chance to splice any ads into, unless youtube were to modify the source material, and that's highly inconvenient. And then we'd just use sponsorblock anyway.

They tried to change the code to access the raw video material many times over, but unless they encrypt it and enforce decryption via keys uniquely embedded in the official youtube app while somehow finding a way to prevent a disassembly to use their keys in unofficial apps, I don't see that happening.

path: 0 2959771 2976371, hotness: undefined, score: 7, children: 3
DogMuffins 1 point 3 years ago

They don't need to splice ads in, they could just render NewPipe inoperable. I'm sure it would be fairly trivial to detect which page loads are from NewPipe.

path: 0 2959771 2976371 2976889, hotness: undefined, score: 1, children: 2
viking 3 points 3 years ago

Not trivial at all, else they'd have done that already instead of playing cat & mouse. How would they differentiate whether it's the official app, some mobile browser, or newpipe? Changing the user agent or cloning a fingerprint from a browser is the trivial thing here.

path: 0 2959771 2976371 2976889 2977602, hotness: undefined, score: 3, children: 1
smc87 0 points 3 years ago

Have you heard of shape from f5 or similar services?

path: 0 2959771 2976371 2976889 2977602 3157815, hotness: undefined, score: 0, children: 0
3FingersOfMilk 0 points 3 years ago

NewPipe+=1;

path: 0 2959771 2979812, hotness: undefined, score: 0, children: 0
jaschen 17 points 3 years ago

YouTube algorithm has been garbage for months now. There's literally no good content.

path: 0 2940365, hotness: undefined, score: 17, children: 2
mortrek 65 points 3 years ago

The site has plenty of good content, just no way to find it.

path: 0 2940365 2940633, hotness: undefined, score: 65, children: 1
kionite231 1 point 3 years ago

Some youtuber link other channels with similar topic/content. I found few new channels that way.

path: 0 2940365 2940633 2950338, hotness: undefined, score: 1, children: 0
GenBlob 16 points 3 years ago

Today I started getting ads with no video just audio. I didn't get the adblocker message yet. Firefox ESR+ublock origin

path: 0 2942979, hotness: undefined, score: 16, children: 3
mayo 13 points 3 years ago

This came up on reddit and one of the members suggested adding the following filter. I don't know if it works but may as well. (ublock > settings > my filters)

youtube.com,youtubekids.com,youtube-nocookie.com##+js(json-prune, playerResponse.adPlacements playerResponse.playerAds playerResponse.adSlots adPlacements playerAds adSlots, adPlacements.[].adPlacementRenderer.renderer.instreamVideoAdRenderer)

path: 0 2942979 2945318, hotness: undefined, score: 13, children: 0
Killing_Spark 4 points 3 years ago

Yep same, Firefox+ublock origin

path: 0 2942979 2946766, hotness: undefined, score: 4, children: 0
riley0 3 points 3 years ago

Try adding YT enhancer. I've got UBlock Origin and that installed. IDK which one is still blocking ads, but they're still blocked.

path: 0 2942979 2957994, hotness: undefined, score: 3, children: 0
MonkCanatella 16 points 3 years ago

I have a script I used to auto download new stuff from my subscriptions using yt-dlp. I never watch videos on youtube anymore because it's just garbage, buffering all the time or just straight up not playing content. The only thing I miss is sponsor block but I don't care that much

path: 0 2941228, hotness: undefined, score: 16, children: 2
rivalary 5 points 3 years ago

Mind sharing it?

path: 0 2941228 2946841, hotness: undefined, score: 5, children: 1
MonkCanatella 2 points 3 years ago

https://www.reddit.com/...

I'll make an updated lemmy post as well but for now it's an old reddit post of mine. There's also some great alternatives that I think are easier to set up if you don't mind managing a separate subscriptions list - I made this script specifically because none of the options I'd seen were able to take your subscriptions from youtube and check them.

May be worth trying to set up with one of the alternative youtube frontends that have been popping up so you can use those accounts. I think it depends on if yt-dlp allows it as that's what's doing all the work here.

path: 0 2941228 2946841 2957311, hotness: undefined, score: 2, children: 0
randint 15 points 3 years ago

Mine is not blocked yet. I am definitely worried about this though. Wonder how much YouTube is going to squeeze out of this ad blocker blocking.

path: 0 2950228, hotness: undefined, score: 15, children: 1
Thisfox 1 point 3 years ago

I recommend trying something like AdNauseum or similar. I get the idea they haven't reached us yet, only people reporting this are in the US so far.

path: 0 2950228 2986794, hotness: undefined, score: 1, children: 0
janguv 14 points 3 years ago

Here's hoping YouTube Revanced on Android and Adguard on desktop continues to work, eh...

path: 0 2973543, hotness: undefined, score: 14, children: 6
Lt_Cdr_Data 11 points 3 years ago

Tbh, at this point there's no reason in them disabling ad blockers. If you haven't gotten used to this insane amount of ads by experiencing the slow, uphill creep, having to go from seeing no ads to suddenly this, is impossible. I couldn't watch youtube videos in the current state of ads, so I'd just have one less vice.

I had already stopped once, when youtube vanced went offline (until i found revanced) and I will do it again

path: 0 2973543 2983040, hotness: undefined, score: 11, children: 0
viking 9 points 3 years ago

Firefox has zero issues with adblock on Desktop. On mobile I prefer Newpipe, but hey. Anything goes.

path: 0 2973543 2976742, hotness: undefined, score: 9, children: 0
hunt4peas 0 points 3 years ago

REX is working fine with the SponsorBlock enabled.

path: 0 2973543 3103051, hotness: undefined, score: 0, children: 1
janguv 0 points 3 years ago

Forgive my ignorance – what's REX?

path: 0 2973543 3103051 3104284, hotness: undefined, score: 0, children: 0
Based_and_Cool 0 points 3 years ago

Revanced stopped working for me last week. I may reinstall incase I was running an old patch.

path: 0 2973543 2992738, hotness: undefined, score: 0, children: 1
EuphoricPenguin22 3 points 3 years ago

Patching a newer version of the Youtube app resolved the issues with playback I was having.

path: 0 2973543 2992738 2993378, hotness: undefined, score: 3, children: 0
twena 13 points 3 years ago

Not from US but my uBlock has a problem with YouTube since yesterday. It blocks the ad video but the sound of it is still audible.

path: 0 2931921, hotness: undefined, score: 13, children: 2
JelloBrains 17 points 3 years ago

I followed this from Ublock's Reddit page, it's working for now.

Current anti-adblock status: Latest fixed (ID: 462a8d5d)*

Please, remember these 3 steps:

Force update all your filter lists (click uBO icon > ⚙ Dashboard button > Filter lists pane > 🕘 Purge all caches > 🔃 Update now)
Turn off all other extensions AND browser's built-in blockers
Remove all your current custom filters AND custom filter lists that you have enabled / added manually (Adguard lists...)
It might be quicker to make a backup of your config and restore to defaults before proceeding to step 1.

Fixing anti-adblock can cause ads slipped. If you see any ads slipped, please report back the EXACT URL and your country when accessing the URL so volunteers are able to investigate.

The filter lists can be updated multiple times a day, so please always do step 1 before reporting.

  • About the ID above, it's the ID of YouTube's script that's used for anti-adblock, you can monitor it via this link: https://pastefy.app/G1Txv5su/raw (top to bottom is oldest to latest). It means that the current fix is matched with the script with corresponding ID.

If the latest ID (the last line) does not match the current one written above, it means YT has updated the new one and it might cause anti-adblock again. If it matches and you still get anti-adblock, kindly check the 3 steps above. Thank you.

path: 0 2931921 2935015, hotness: undefined, score: 17, children: 1
twena 2 points 3 years ago

I will definitely try this. Thank you really

path: 0 2931921 2935015 2937183, hotness: undefined, score: 2, children: 0
Neon_Dystopia 12 points 3 years ago
path: 0 2961740, hotness: undefined, score: 12, children: 16
Waluigi 9 points 3 years ago

Sad thing is that this will affect even Firefox + uBlock

path: 0 2961740 2965532, hotness: undefined, score: 9, children: 15
Neon_Dystopia 3 points 3 years ago
path: 0 2961740 2965532 2972918, hotness: undefined, score: 3, children: 14
Chriskmee -14 points 3 years ago

How are they supposed to run a free service without ads, especially one as expensive to run as a video hosting website?

path: 0 2961740 2965532 2972918 2975571, hotness: undefined, score: -14, children: 13
SuddenDownpour 7 points 3 years ago

By making Youtube Premium worth it, both for users and creators. Make it transparent what % of the YP fee is actually going to creators, make that % actually fair, give extra features to YP users, incentivize creators to ask their viewers to collaborate with it if they actually can afford to. Youtube has reached a point where it has become a public utility, to the point that tens of millions of people use it to supplement their education or stay updated on the news. A website increasingly necessary shouldn't force someone without a penny to choose between paying what they can't afford or have their head fried up by ads.

Of course, this idea rooted in civil values is incompatible with an economic actor that sees both creators and consumers as cattle that must be milked as efficiently as possible.

path: 0 2961740 2965532 2972918 2975571 2977614, hotness: undefined, score: 7, children: 5
flerp 2 points 3 years ago

Oh no! Is the company that makes 70b per quarter and is buying back 70b of shares to keep making more in trouble of only making 80b per quarter next year and not 100b? Poor babies.

path: 0 2961740 2965532 2972918 2975571 2999211, hotness: undefined, score: 2, children: 1
Neon_Dystopia 2 points 3 years ago
path: 0 2961740 2965532 2972918 2975571 2991105, hotness: undefined, score: 2, children: 0
bobman 1 point 3 years ago

How does lemmy make money?

Also, hasn't youtube been wildly profitable for years? Profit, by definition is excess. It's what's left over after all business expense have been paid.

If youtube is profitable, why do they need more profit? Oh yeah, they don't.

Sorry this needs to be spelled out for you.

path: 0 2961740 2965532 2972918 2975571 2983117, hotness: undefined, score: 1, children: 3
HawlSera 12 points 3 years ago

Ublock Origin still works for me

path: 0 2938754, hotness: undefined, score: 12, children: 0
stebo02 12 points 3 years ago

should I vote if I'm not in the US?

path: 0 2947761, hotness: undefined, score: 12, children: 8
theshatterstone54 17 points 3 years ago

If you have a good party to vote for. I'm in the UK, and I'm not so sure if any party deserves my vote.

path: 0 2947761 2950432, hotness: undefined, score: 17, children: 7
stebo02 6 points 3 years ago

i meant on the poll lol

path: 0 2947761 2950432 2956625, hotness: undefined, score: 6, children: 0
HappyFrog 4 points 3 years ago

You should always vote, if only to not let the worst party get power. Your enemies would rather you didn't vote than vote for their enemy.

path: 0 2947761 2950432 2957955, hotness: undefined, score: 4, children: 2
Thisfox 1 point 3 years ago

Still odd to think of countries where voting is optional. It's compulsory here, adn the only people who can afford to not vote are the rich....

path: 0 2947761 2950432 2957955 2994087, hotness: undefined, score: 1, children: 0
theshatterstone54 -1 points 3 years ago

Fair enough. The thing is, do I vote for the near-anarchists, that, save for the anarchism, align with my principles? Do I vote for the party that is further away from my ideological beliefs, but doesn't have the anarchism, and is a bit larger? Or do I vote for the main opposition, which is even further from me ideologically (and doesn't seem to have much of a clear vision)?

path: 0 2947761 2950432 2957955 2981774, hotness: undefined, score: -1, children: 0
ChaoticNeutralCzech 0 points 3 years ago path: 0 2947761 2950432 2966789, hotness: undefined, score: 0, children: 1
PipedLinkBot -1 points 3 years ago path: 0 2947761 2950432 2966789 2967915, hotness: undefined, score: -1, children: 0
ChaoticNeutralCzech 0 points 3 years ago
path: 0 2947761 2950432 2966368, hotness: undefined, score: 0, children: 0
roon 11 points 3 years ago

I didn't get this banner yet maybe because I'm using ublock origin

path: 0 2960458, hotness: undefined, score: 11, children: 0
DrQuint 11 points 3 years ago

Freaking ironic that I get an ad on strawpoll stopping me from seeing the results.

path: 0 2940781, hotness: undefined, score: 11, children: 0
Echo71Niner 10 points 3 years ago

They are rolling this out in stages to users worldwide, It happened to me 3 weeks ago, on Brave, Firefox, and on Chrome. I had to junk Brave, update firefox, flush out my extensions (remove them) and reinstall, and now I run 6 different ad blocking and tracking extensions and its back working again. You should also know that Adblocker Ultimate are also involved and working on blocking their extension from working so they can sell premium app, which is now an app that runs on your computer, not an extension anymore.

path: 0 2956302, hotness: undefined, score: 10, children: 10
mineapple 12 points 3 years ago

6 adblockers?! Have you looked into unlock origins customisable block lists? You can combine at least 3 blockers with that. Additionally you could add custom ones

path: 0 2956302 2961652, hotness: undefined, score: 12, children: 6
CampRefugeeCounselor 0 points 3 years ago

Unlock or UBlock?

path: 0 2956302 2961652 2966575, hotness: undefined, score: 0, children: 0
Echo71Niner -2 points 3 years ago

unlock origins customisable block lists? You can combine at least 3 blockers with that

I'll look into it.

path: 0 2956302 2961652 2963142, hotness: undefined, score: -2, children: 4
ChaoticNeutralCzech 12 points 3 years ago

https://filterlists.com/ - list of auto-updating filters, makes it very easy to add one. Make sure to use one with a good rating.

Yeah, do it. uBlock is great in terms of performance so you will feel how much faster browsing is after uninstalling the other add-ons. You can also block known scams or websites known by pirates to be unsafe. It can also block cookie popups (but I don't care about cookies might be better at this).

I also suggest Redirector, which lets you can set up custom redirects such as

Pattern name:  YT Shorts in normal player
Example URL:   https://www.youtube.com/shorts/ExmplVid-ID → https://www.youtube.com/watch?v=ExmplVid-ID
Match pattern: https://www.youtube.com/shorts/*
Redirect to:   https://www.youtube.com/watch?v=$1
path: 0 2956302 2961652 2963142 2963145, hotness: undefined, score: 12, children: 3
PipedLinkBot 2 points 3 years ago path: 0 2956302 2961652 2963142 2963145 2965186, hotness: undefined, score: 2, children: 1
Admin 2 points 3 years ago path: 0 2956302 2961652 2963142 2963145 2977618, hotness: undefined, score: 2, children: 0
Sanrasxz 8 points 3 years ago

This is quite concerning. Hopefully the adblocker extension devs are able to bypass this. I expect a cat and mouse game eventually.

path: 0 2956302 2959865, hotness: undefined, score: 8, children: 2
ToxicWaste 15 points 3 years ago

It will be a cat and mouse game, which YouTube will loose in the long run. Don't remember the name, but there is a very clever solution: They download all the ads so YT thinks you are watching. However, ads are never shown to you. This is extremely hard to detect and it muddies the data collection of Google since you watch and click everything.

IMO: This is a net loss for YT/Google. Their collection of data looses value. And advertisers wont be willing to pay the same amount for clicks, since a registered click is not necessary someone who watched and the targetting got worse...

path: 0 2956302 2959865 2961855, hotness: undefined, score: 15, children: 1
327 2 points 3 years ago

AdNauseam is a browser extension that uses the same idea to obfuscate tracking. I never used it myself, but it seems like a good alternative to blocking ads.

path: 0 2956302 2959865 2961855 2979527, hotness: undefined, score: 2, children: 0
Platform27 9 points 3 years ago

Until today I haven’t seen an ad on YT, for years. Then I searched for a video, earlier today, clicked, and got an ad. Clicked off the video, restarted the browser (also updated uBlock’s filters), and that fixed it.

path: 0 2932008, hotness: undefined, score: 9, children: 0
GreenMario 8 points 3 years ago

Firefox + UBO and ReVanced still working rn.

path: 0 2934919, hotness: undefined, score: 8, children: 0
hellfire103 8 points 3 years ago

*Laughs in PeerTube

path: 0 2965892, hotness: undefined, score: 8, children: 0
zipzoopaboop 7 points 3 years ago

Firefox and ublock as usual, still good

path: 0 2943023, hotness: undefined, score: 7, children: 0
FeelThePower 6 points 3 years ago

I load the old 2014-2017 layout locally from my C drive as my localhost and proxy it to load when i type in youtube dot com. avoids ads, increases performance, and looks better as a layout all in one.

path: 0 2938206, hotness: undefined, score: 6, children: 2
lemmyvore 17 points 3 years ago

I sincerely doubt the 2017 API still works today. Apps like NewPipe have to update every month to keep up with it, and old YouTube mobile app versions don't work anymore.

path: 0 2938206 2938336, hotness: undefined, score: 17, children: 1
FeelThePower 0 points 3 years ago

look up rehike for youtube if you are curious. It works for me and many people.

path: 0 2938206 2938336 3380732, hotness: undefined, score: 0, children: 0
HumanPerson 6 points 3 years ago

I only watch Rossmann’s channel anymore so I will probably just quit if they block mine. I use uBlock Origin + Librewolf + VPN + pihole + a random user agent extension. When I set my VPN to USA it still doesn’t say anything.

path: 0 2938026, hotness: undefined, score: 6, children: 4
Drewski 10 points 3 years ago path: 0 2938026 2940068, hotness: undefined, score: 10, children: 2
HumanPerson 5 points 3 years ago

Yay I can quit google completely!!!!

path: 0 2938026 2940068 2941373, hotness: undefined, score: 5, children: 0
theshatterstone54 1 point 3 years ago

YES! One of the creators I can keep on watching when I quit (by the end of the week probably, or when they kill off newpipe)

path: 0 2938026 2940068 2974850, hotness: undefined, score: 1, children: 0
DARbarian 1 point 3 years ago

I have almost the exact same setup! But please tell me more about this random user agent extension

path: 0 2938026 2938786, hotness: undefined, score: 1, children: 0
toiletwhole 6 points 3 years ago

If you are on Linux you can just use freetube. Maybe it’s also available on windows but that’s something I don’t know

path: 0 2932353, hotness: undefined, score: 6, children: 1
orvorn 4 points 3 years ago

FreeTube is available on Windows as well.

path: 0 2932353 2932990, hotness: undefined, score: 4, children: 0
BrownianMotion 6 points 3 years ago
path: 0 2948413, hotness: undefined, score: 6, children: 1
XYZinferno 12 points 3 years ago

I dont care content makers are losing, they are all dumbarses, and if they are supporting yt still and not posting elsewhere, then they are just stupid cunts.

You had me until here. If you want to monetize online video content or get widespread appeal, YouTube is pretty much the viable choice atm, save for Twitch which only works if you're a streamer or Nebula, which even then it alone doesn't suffice and is very specific. If you plan on trying to "make it big" using PeerTube, Vimeo, Dailymotion, etc. alone, your aspirations may as well be dead on arrival.

Not losing sleep over the money content creators lose over you using adblock is fine, I personally don't put too much importance on it myself. But to call them all dumbasses or stupid cunts is just unreasonable, given the lack of a proper, popular alternative for most of them to do what they do.

path: 0 2948413 2957891, hotness: undefined, score: 12, children: 0
bzxt 5 points 3 years ago

I have been having this problem 2 days ago, but I have started using NoScript in combination with UBlock Origin yesterday and i didn't see any ads after that.

path: 0 2991161, hotness: undefined, score: 5, children: 0
lemming007 5 points 3 years ago

I'll quit YouTube before I watch ads.

path: 0 3087193, hotness: undefined, score: 5, children: 0
Roundcat 3 points 3 years ago

Not yet, and I'm already prepared to use piped if I can't use youtube itself, and hopefully people will start reuploading content to peertube (wink) if yt just becomes inaccessible.

path: 0 2936302, hotness: undefined, score: 3, children: 0
RickyRigatoni 3 points 3 years ago

Youtube has not blocked me with my uBlock but your poll did for being a vpn user.

I know it's an anti-vote-fraud measure but it's still kind of funny.

path: 0 3015109, hotness: undefined, score: 3, children: 0
gonzoknowsdotcom1 3 points 3 years ago

All my subscriptions are on peertube and odysee but no

path: 0 2971302, hotness: undefined, score: 3, children: 0
pewgar_seemsimandroid 2 points 3 years ago

probably not ublock and for sure not revanced

path: 0 2957932, hotness: undefined, score: 2, children: 1
Hhffggshn 1 point 3 years ago

I'm still good with revanced

path: 0 2957932 2973506, hotness: undefined, score: 1, children: 0
HughJanus 2 points 3 years ago
path: 0 2938095, hotness: undefined, score: 2, children: 0
samus12345 2 points 3 years ago

Not yet, just waiting for it.

path: 0 2967618, hotness: undefined, score: 2, children: 0
kworpy 1 point 3 years ago

For me it's quite strange. This first happened around 2 weeks ago, I was getting ads, however only the audio works as when the ad plays the screen is black.

I'm on Firefox with uBlock. Also I never got this popup, I just started getting ads with a black screen.

path: 0 3020684, hotness: undefined, score: 1, children: 1
cmysmiaczxotoy 1 point 3 years ago path: 0 3020684 3038963, hotness: undefined, score: 1, children: 0
useful_idiot 1 point 3 years ago

Invidious has been working flawlessly :)

path: 0 3002499, hotness: undefined, score: 1, children: 0
Kbin_space_program 0 points 3 years ago

Yes. It's very effective. There are unfortunately absolutely no way around their rock solid implementation.

path: 0 2932904, hotness: undefined, score: 0, children: 2
elouboub 1 point 3 years ago

Can't you just open a new private tab or window for every video that you watch?

path: 0 2932904 2936918, hotness: undefined, score: 1, children: 1
Kbin_space_program 6 points 3 years ago

Absolutely you can. There are absolutely no other, easier ways to circumvent it and this is absolutely not a failed attempt at sarcasm at how laughable their malware attempt is.

Even the "endgame" one is laughably easy to circumvent. I'm not giving them any hints though because Fuck Google.

path: 0 2932904 2936918 2937204, hotness: undefined, score: 6, children: 0
wolfshadowheart 0 points 3 years ago

Isn't it just rolling out for Chrome users? Won't Firefox be unaffected?

path: 0 2935647, hotness: undefined, score: 0, children: 4
Honse 6 points 3 years ago

No, im using Librewolf and i am blocked currently.

path: 0 2935647 2935681, hotness: undefined, score: 6, children: 3
wolfshadowheart 5 points 3 years ago

Ah I see. It begins I guess :(

path: 0 2935647 2935681 2936908, hotness: undefined, score: 5, children: 0
WtfEvenIsExistence -2 points 3 years ago
path: 0 2935647 2935681 2939573, hotness: undefined, score: -2, children: 1
QuazarOmega 2 points 3 years ago

I believe most videos aren't licensed for unrestricted redistribution, you're putting yourself and/or your instance owner at risk by uploading content you don't own.
However I support the general idea, I just don't know what the best way to share the content safely would be

path: 0 2935647 2935681 2939573 2941404, hotness: undefined, score: 2, children: 0
porkins -1 points 3 years ago

I don’t get ads. I don’t know why. I have YouTubeTV and get the splash when opening the app to buy Premium, but nonetheless don’t get any ads ever. I’m not looking a gift horse in the mouth and not questioning it.

path: 0 2946870, hotness: undefined, score: -1, children: 0
entropy -6 points 3 years ago

pi-hole means no ads anywhere!

path: 0 2933852, hotness: undefined, score: -6, children: 4
eleqtric-conjurer 12 points 3 years ago

If your pihole can block YouTube ads please tell me how!

path: 0 2933852 2933990, hotness: undefined, score: 12, children: 0
Barky 7 points 3 years ago

This doesn't prevent YouTube ads. Source: have a pi-hole

path: 0 2933852 2934314, hotness: undefined, score: 7, children: 0
Chewy7324 5 points 3 years ago

Unless the ad is served on the same domain as the video. There's no way to block the ad through DNS without blocking the video too.

path: 0 2933852 2939032, hotness: undefined, score: 5, children: 0
Poggervania 4 points 3 years ago

Actually not true, the way YouTube ads show up is more or less almost impossible for pi-holes to catch. There’s been some successes in the past, but then YouTube ads somehow find another way to circumvent it.

Source: have pi-hole

path: 0 2933852 2937666, hotness: undefined, score: 4, children: 0

thanks for using Leebra!

go to feed...