Has YouTube Blocked Your Adblocker Yet?? angielski

UPDATE 2It 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!

UPDATESo 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: https://lemmy.dbzer0.com/pictrs/image/bd0e0c67-f37d-4b82-a5b8-1703542f0af1.jpeg

  • 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.

https://lemmy.dbzer0.com/pictrs/image/e37261ac-cf82-4ecd-9481-bea42029a3a0.png

  • 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.

TheCraiggers,
@TheCraiggers@lemmy.dbzer0.com avatar

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

DARbarian,
@DARbarian@artemis.camp avatar

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.

NumbersCanBeFun,
@NumbersCanBeFun@kbin.social avatar

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

UndefinedIsNotAFunction,

Same. Keep up the good work.

DARbarian,
@DARbarian@artemis.camp avatar

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

can,

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.

SomeBoyo,

Why do you need adblock, when using piped?

Darkassassin07,
@Darkassassin07@lemmy.ca avatar

Because the internet includes more than just youtube…?

DARbarian,
@DARbarian@artemis.camp avatar

For everything other than Youtube!

reflex,
@reflex@kbin.social avatar

PiHole+Unbound . . . AirVPN with DNS blocking, mullvad Private DNS . . . Libretube

This is what I pictured reading all that.

DARbarian,
@DARbarian@artemis.camp avatar

Hahaha yeah I may have went a little berserk there

Very_Bad_Janet,

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

DARbarian,
@DARbarian@artemis.camp avatar

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.

TrustingZebra,

I just use use uBlock Origin.

DARbarian,
@DARbarian@artemis.camp avatar

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

TrustingZebra,

Before this new behavior uBlock Origin always blocked YouTube ads.

Risk,

I mean, it did up until maybe now.

nudnyekscentryk,
@nudnyekscentryk@szmer.info avatar

still does outside the US

Emanuel,

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?

DARbarian,
@DARbarian@artemis.camp avatar

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

deegeese,

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

glad_cat,

I have a VPN and I can’t vote.

balderdash9,

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

Honse, (edited )

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

https://lemmy.dbzer0.com/pictrs/image/16230dc5-ade1-4c6a-b6f8-f0104a4b080d.png

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


<span style="color:#323232;">(function() {
</span><span style="color:#323232;">    'use strict';
</span><span style="color:#323232;">    var clickInterval = setInterval(skipAds, 5);
</span><span style="color:#323232;">    var ytpAdModule;
</span><span style="color:#323232;">    var miniAdd;
</span><span style="color:#323232;">    var skipButton;
</span><span style="color:#323232;">    var currentVideo;
</span><span style="color:#323232;">
</span><span style="color:#323232;">    function skipAds() {
</span><span style="color:#323232;">        ytpAdModule = document.querySelector('.ytp-ad-module');
</span><span style="color:#323232;">        skipButton = document.querySelector('button[class*="ad-skip"]');
</span><span style="color:#323232;">        miniAdd = document.querySelector('.ytp-ad-overlay-container');
</span><span style="color:#323232;">
</span><span style="color:#323232;">        if (ytpAdModule !== null &amp;&amp; ytpAdModule.innerHTML !== '') {
</span><span style="color:#323232;">            ytpAdModule.style.display = 'none';
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">
</span><span style="color:#323232;">        if (skipButton !== null) {
</span><span style="color:#323232;">            skipButton.click();
</span><span style="color:#323232;">            return;
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">
</span><span style="color:#323232;">        currentVideo = document.querySelector('video[class*="main-video"]')
</span><span style="color:#323232;">        if (currentVideo !== null &amp;&amp; currentVideo.duration &lt;= 5) {
</span><span style="color:#323232;">            currentVideo.muted = true;
</span><span style="color:#323232;">            currentVideo.play();
</span><span style="color:#323232;">            currentVideo.currentTime = currentVideo.duration;
</span><span style="color:#323232;">        }
</span><span style="color:#323232;">    }
</span><span style="color:#323232;">})();
</span>

Lastly, ensure the “Automatically execute the script when YouTube is loaded in a tab” box is checked, and press Save

https://lemmy.dbzer0.com/pictrs/image/10b997a8-0a72-4616-8155-0cdfc59d7b59.png


I’ll add more methods as they are discovered!

Neato,
@Neato@kbin.social avatar

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.

Honse,

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.

nilloc,

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.

Landrin201,
@Landrin201@lemmy.ml avatar

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

Venus,
@Venus@hexbear.net avatar

Based. Absolutely true, there is no good use for advertising.

merc,

How do you define “advertising”?

Is it advertising if a community government makes citizens aware that bus service will be changing?

Is it advertising to tell people that there’s a suicide hotline available if they need help?

Is it advertising to encourage people to volunteer for a local festival?

What about telling people that the festival exists using a poster? Is that an ad? Does it depend if the festival is free or non-profit?

Advertising is just fundamentally about bringing people’s attention to something. The spectrum can range from a municipal government “advertising” its monthly meeting so that local people can participate in their local democracy, to spam emails hyping a pump-and-dump cryptocurrency.

Different people will have different ideas where the cut-off should be. The extreme libertarians will say that nothing should be banned. Others will say that it’s ok to ban ads for alcohol and cigarettes but not for makeup or coffee. Even totalitarian states and supposedly communist states where one entity controls all companies have ads. Some of the most striking ads ever made were for Mussolini.

So, the question really isn’t about banning ads, it’s just where to draw the line.

captain_aggravated,
@captain_aggravated@sh.itjust.works avatar

An increasing number of states are banning billboards along highways. Travelers do need a low tech method for finding certain services though, such as food, lodging, fuel and restrooms. So you’ll see those blue signs that says “FOOD NEXT EXIT” with a Waffle House and Burger King logo. In order to put the logo on that sign, the business has to meet certain criteria (which vary from state to state like all highway laws), for example a restaurant must be within 3 miles of the highway, be open for at least 12 hours a day and feature public restrooms and telephones. The sign itself may include a distinctive logo and the name of the business in legible font but no slogans or ad copy. “This burger restaurant is nearby.”

This I see as an appropriate amount of advertising.

bobman,

Paying to tell others that they should buy something they otherwise would not.

merc,

So, the government of Florida advising people to stock up on emergency supplies ahead of the oncoming hurricane – banned?

OminousOrange,
@OminousOrange@lemmy.ca avatar

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.

MrPoopyButthole,

Multinational scam artists

blergh,

They know. The fact that targeted ads leveraging so-called “big data” are not more effective than standard advertising is now known to the public. We can bet Google knew this years in advance. But they can’t abandon their whole business model since that would freak the stock market and investors out. So, they need to squeeze as much as they can before the entire model becomes unworkable and they’ll be forced to switch to something else or disappear.

OminousOrange,
@OminousOrange@lemmy.ca avatar

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.’

mindbleach,

Same shit with Facebook claiming videos were the bestest content possible, using numbers sourced from the vicinity of their pelvis. Now every goddamn news site has autoplaying video for no damn reason.

jarfil,

Advertising is about creating trends, and catching some impulse buyers. Effectiveness is likely overstated, but on the other hand it’s difficult to quantify the effectiveness of a trend. I don’t think it’s likely to ever collapse, people will always want to believe they can influence others more than they actually can.

speq,

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

snowbell,
@snowbell@beehaw.org avatar

Strange, that doesn’t work for me

lemann,

Update your VLC player if you haven’t already.

There is also a way to individually update just the extractor LUA script that VLC uses to play YT videos, but I haven’t messed with that in so long I’ve forgotten how to do it

can,

VLC is so damn good

determinism2,

This has not worked for me in a very long time.

Venus,
@Venus@hexbear.net avatar

Your vlc is probably busted and could use a reinstall. Happened to me once. It still works.

commie,

i thought maybe this would work for me: nope. it was awesome when it worked but it’s completely broken afaict.

henfredemars,

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.

jabberati,
@jabberati@social.anoxinon.de avatar

@henfredemars @Honse Really depends on how many people are using ad blockers. Probably it pays off for them to implement ad block blocking.

01189998819991197253,
@01189998819991197253@infosec.pub avatar

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

snowbell,
@snowbell@beehaw.org avatar

That is depressing

01189998819991197253,
@01189998819991197253@infosec.pub avatar

Agreed. Sadly, agreed.

Landrin201,
@Landrin201@lemmy.ml avatar

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

IIIIII,

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.

kionite231,

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

Petter1,

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.

charles,

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

TwoCubed,

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.

skullgiver,
@skullgiver@popplesburger.hilciferous.nl avatar

Do you guys not get Youtube Premium Lite? It’s €7 per month to get rid of ads and doesn’t include stuff most people aren’t interested in like Youtube music.

Landrin201,
@Landrin201@lemmy.ml avatar

Nope, not available her ein the states.

splendoruranium,

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.

tryptaminev,
@tryptaminev@feddit.de avatar

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.

BlueBockser,

And thus the enshittification cycle completes

splendoruranium,

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

doggle,

You are not the customer. You are the product.

theshatterstone54,

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

machinya,

capitalism (or at least the weird version of it used in the tech world) is about short term profit. if they get good numbers from this, they can make future projections of an imaginary increase over the years and make the ad companies happy for a while. they do not care about breaking the product in the long term

theshatterstone54,

I know. This was just the intelligent person view. In reality, as you said, they only care about short term profit, and can you blame them? Things can change overnight in the tech world. Google (as a product) was undisputed until ChatGPT was released and integrated into Bing, now Alphabet is falling vehind and losing its dominance on the market.

ours,

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

skullgiver,
@skullgiver@popplesburger.hilciferous.nl avatar

Why would the ad companies back out if Youtube got rid of the people who were blocking their ads anyway? If anything, it makes Youtube a safer investment.

theshatterstone54,

Less viewer numbers to show to advertisers.

skullgiver,
@skullgiver@popplesburger.hilciferous.nl avatar

They’re already in hot water because of lying to their customers over this. They actually track ad blocker usage because lying about ads getting played when they weren’t would be fraud. In fact they’re getting sued by a whole bunch of advertisers because the “100% verified watched ads on Youtube.com” were actually playing in hidden frames on random websites.

I’m pretty sure the anti blocking, remote attestation direction Google is taking is an attempt to quickly fix this situation before it can get out of hand. They don’t know what ads plays are legitimate anymore and their customers are angry about it.

Worst case scenario, all Youtube advertisers over the last x years get their money back with some compensation, which would be devastating to Youtube as a product.

gravitas_deficiency,

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

DAMunzy,

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

mayo,

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

tryptaminev,
@tryptaminev@feddit.de avatar

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.

captain_aggravated,
@captain_aggravated@sh.itjust.works avatar

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.”

seaturtle,

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

jarfil,

There was a sweet spot when cat videos went pro. Then the spam killed it.

mayo,

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

captain_aggravated,
@captain_aggravated@sh.itjust.works avatar

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.

Laurentide,
@Laurentide@pawb.social avatar

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.

captain_aggravated,
@captain_aggravated@sh.itjust.works avatar

That’s the one, lonelygirl15. What a wild story. My internet destroyed brain immediately jumped to “Wow that was before the Youtube partner program, and it was presented as an authentic teen’s vlog at least at first…I wonder what the monetization strategy was?” And it turns out there kinda wasn’t one. They went into $50,000 worth of credit card debt to fund the series, according to Wikipedia. Like remember that episode of South Park (remember that show?) where they had the waiting room full of viral video people waiting to get their non-existent internet fame money?

LoafyLemon,

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

HerrLewakaas,

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

jarfil,

Wouldn’t this show that they failed, if they have to recur to site-based adblocker blocking? Clearly v3 hasn’t stopped people from using Firefox, yt-dl, or whatever.

LoafyLemon,

The Gecko Engine (Firefox), holds a user share of 4%. When compared to Chromium's (Google Chrome and its clones) whooping 72% (roughly) user share, it's clear that Firefox has limited relevance to their business strategy.

https://en.wikipedia.org/wiki/File:StatCounter-browser-ww-monthly-202011-202011-bar.png

jarfil,

(according to latest statistics, Firefox would have an even lower share)

My point is: if v3 were effective at neutralizing ad blockers in 75% of the user base, or even 95% since Safari is supposed to get on board too, why are they developing additional countermeasures?

Or has Safari decided to do like Firefox, and still allow full ad blockers?

LoafyLemon,

I reckon that blocking ad blockers isn't some extra countermeasure here. It's actually right in line with what Manifest V3 and that new environment attestation system are all about. They're basically making sure that if you tinker with crucial bits of the JavaScript -- stuff they see as essential (like anti-adblock) -- you won't make it through the attestation and you'll get blocked.

They don't want to block all modifications because that would be a hindrance to many users, for example the visually impaired. However, anything affecting their bottom line will probably be blocked.

How that will affect Firefox? I don't know, maybe nothing will change for us, or perhaps Google will block Firefox altogether. We certainly know they're capable.

jarfil,

Yes, attestation is in line with V3 changes, just that it makes them irrelevant: YouTube’s website could some day ask for environment attestation of “no extension using the intercept hooks”, or “only the approved ones”, and still have the same effect. The fact that they’re implementing a server-side anti-adblock now, while postponing V2 deprecation over and over, makes me think the V3 changes are a flop.

Firefox… would likely require Mozilla to play ball and implement similar attestation in an official binary attestable by the OS. Edge too, just so MS doesn’t mess with Chrome’s binary attestation on Windows.

Safari already has attestation, without extra parameters, but it could be extended:

httptoolkit.com/…/apple-private-access-tokens-att…

cosecantphi,
@cosecantphi@hexbear.net avatar

Youtube’s use of A/B testing is very smart in that it’s actually nothing about testing user response and all about limiting the number of people they piss off at once with their god awful changes.

The day I can’t block ads on the internet is the day I stop using the internet.

AcidSmiley,
@AcidSmiley@hexbear.net avatar

yeah this, youtube inb particular is entirely unusable without an adblocker

WtfEvenIsExistence,
lemann,

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

ramjambamalam,

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.

RogueBanana,

When has that stopped anyone from abusing it anyway…

ArmokGoB,

People should tell them to kick rocks.

Melody, (edited )
@Melody@lemmy.one avatar

Here’s a rule for uBlock Origin.

Credit: lemmy.one/comment/597479 && original link: 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)

Honse,

This has not worked for me.

NumbersCanBeFun,
@NumbersCanBeFun@kbin.social avatar

Commenting so I can do this later. Thanks OP 😁🍻

glad_cat,

You can save comments too.

Teppic,
@Teppic@kbin.social avatar

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

NumbersCanBeFun,
@NumbersCanBeFun@kbin.social avatar

Maybe on lemmy but not on kBin as far as I’m aware. If anyone knows how to this I’m game.

quirzle,
@quirzle@kbin.social avatar

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

NumbersCanBeFun,
@NumbersCanBeFun@kbin.social avatar

If you looked at my vote history you would see why that doesn’t work for me 😅

quirzle,
@quirzle@kbin.social avatar

Looks like you comment more than you boost though.

NumbersCanBeFun,
@NumbersCanBeFun@kbin.social avatar

Okay.

PelicanPersuader,
@PelicanPersuader@beehaw.org avatar

Doing the lord’s work. Thank you!

pdqcp,

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

refurbishedrefurbisher, (edited )

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

XYZinferno,

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

riley0,
@riley0@lemmy.dbzer0.com avatar

Thanks! Freetube works great. Here are directions for importing YT subscriptions. docs.freetubeapp.io/…/importing-subscriptions/

Venus,
@Venus@hexbear.net avatar

What happens to me now with Firefox and ublock origin is if i leave a video paused in the background for a long time and then it unloads it and then I click it to continue watching so it loads back up, then it plays an ad. I was legit like cat-confused because I haven’t seen an ad on the internet in years.

denton,

Same! I was taken aback and offended all at once then refreshed to get rid of the ad which thankfully still works… But for how long more is the question 😭

w00t,
@w00t@lemmy.ml avatar

Yep, same here. Today I’ve been abruptly reminded how intrusive and obnoxious ads on Youtube are!

https://lemmy.ml/pictrs/image/1b3a68fc-2e41-4662-aa51-a4a97f56a0d5.png

hakase,

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

barberousse,
@barberousse@lemmy.ca avatar

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

Thorny_Thicket,

Huh… Worked for me

LoafyLemon,

No problems with Mozilla VPN

MattTheTekie,

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

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • Spoleczenstwo
  • sport
  • nauka
  • muzyka
  • rowery
  • giereczkowo
  • FromSilesiaToPolesia
  • esport
  • lieratura
  • Blogi
  • Pozytywnie
  • krakow
  • slask
  • fediversum
  • piracy@lemmy.dbzer0.com
  • niusy
  • Cyfryzacja
  • tech
  • kino
  • LGBTQIAP
  • opowiadania
  • Psychologia
  • motoryzacja
  • turystyka
  • MiddleEast
  • zebynieucieklo
  • test1
  • Archiwum
  • NomadOffgrid
  • Wszystkie magazyny