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.

    • DARbarian@artemis.camp
      link
      fedilink
      arrow-up
      4
      ·
      1 year 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.

  • speq@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

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

  • LoafyLemon@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

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

    • HerrLewakaas@feddit.de
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year 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

  • Melody Fwygon@lemmy.one
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 year 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)

  • henfredemars@infosec.pub
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 year 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.

    • splendoruranium@infosec.pub
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year 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.

      • tryptaminev 🇵🇸 🇺🇦 🇪🇺@feddit.de
        link
        fedilink
        English
        arrow-up
        0
        ·
        1 year 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.

        • splendoruranium@infosec.pub
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year 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

  • Honse@lemmy.dbzer0.comOP
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 year 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 <= 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!