Honse

joined 2 years ago
[–] Honse 1 points 8 months ago (1 children)

I have an overkill 128GB SanDisk flash drive I got for 13 dollars and it works great for my 24/7 unraid setup

[–] Honse 13 points 8 months ago* (last edited 8 months ago) (4 children)

Its not as easy as launching from steam for example, but if you have some basic linux knowledge and the ability to use Google you can get 99% of pirated games running in either bottles or lutris. Search for steam deck specific piracy guides, they largely apply to all linux distros.

[–] Honse 2 points 9 months ago

If anyone has a US based provider that has m3u and lots of content, PM me. VOD is not necessary but a bonus and would like reasonable price not reseller upcharge, at least that much.

[–] Honse 2 points 11 months ago

Man same been looking since 2019 and zero luck with an invite. Is it really that exclusive? I've only seen invites sent like twice ever from reddit years ago.

[–] Honse 22 points 1 year ago (1 children)

At least they added offline. Can't even expect the minimum these days.

[–] Honse 43 points 1 year ago (1 children)

Need more courageous people to do what's right

[–] Honse 7 points 2 years ago (3 children)

No, im using Librewolf and i am blocked currently.

[–] Honse 10 points 2 years ago

This has not worked for me.

[–] Honse 60 points 2 years ago (1 children)

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.

[–] Honse 108 points 2 years ago* (last edited 2 years ago) (6 children)

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!

view more: ‹ prev next ›