Remix.run Logo
Terr_ 3 days ago

My view is that core bargain was fine, but advertisers have broken the agreement with other offenses, like:

* Autoplay videos that preemptively take my bandwidth.

* Autoplay audio that takes over my speakers unexpectedly and interrupts other things.

* Forms of pop-ups that clutter or disrupt my tab/window control.

* Being spied-on by a system that tries to aggregate and track all of my browsing habits.

* A mostly unaccountable vector for malware and phishing sites.

* Just a genuinely horrible experience whenever a page is one part content to three parts blinking blooping ever shifting ads that would make Idiocracy blush.

They try to pretend customer resistance is just over the most innocent and uncontroversial display of ads, but it's not true, and it hasn't been for decades.

NicuCalcea 3 days ago | parent [-]

I wish there was a middle ground where I could block ads like the ones you mention, while allowing privacy-respecting ads that don't ruin my browsing experience. I know Adblock Plus have their "Acceptable Ads" policy [1], but that just meant letting through ads from companies that paid them, like Google [2].

[1] https://adblockplus.org/acceptable-ads

[2] https://www.theverge.com/2013/7/5/4496852/adblock-plus-eye-g...

allknowingfrog 2 days ago | parent | next [-]

Ads are only easy to block because they load from centralized, third-party domains. Physical print publishers don't leave blanks in their newspapers and send them off to advertisers to fill in. They approve and print the ads, just like any other content. If digital publishers made similar agreements to embed static ads, they would not be affected by ad blockers.

NicuCalcea 2 days ago | parent [-]

I don't mind ads that are targeted based on the content of the page, like how DuckDuckGo ads work. Google AdWords used to be the same, and it paid publishers much more than it does now.

WorldMaker 2 days ago | parent | prev | next [-]

My approach today is Firefox with Enhanced Tracking Protection and then keeping Google, Meta/Facebook, and Amazon logins sequestered to individual containers. At that point a lot of the worst ad networks will complain that you are using "an ad blocker" simply because most of their trackers fail and won't even bother showing ads.

(Then on mobile, similarly using Firefox on iOS, being heavy and fast on the "ask app not to track" buttons and keeping logins to first party apps only and almost never in either Safari or Firefox.)

Again, I use no real "ad blocker", just the above steps.

It's probably not an approach for everyone, and entails a bit of paranoia to operate, but I think it sends the right message that I don't mind untracked/untargeted ads and don't think companies deserve my unfiltered data.

joquarky 2 days ago | parent | prev | next [-]

Do people still use bookmarklets?

I wrote this one to remove all <iframe> elements, which is where most of the worst distractions live. I mostly only use it when a site has gone too far.

    javascript:(function () {
        const rm = () => document.querySelectorAll('iframe')
            .forEach(f => f.remove());
        let timeout;
        const debouncedRm = () => {
            clearTimeout(timeout);
            timeout = setTimeout(rm, 100);
        };
        rm();
        new MutationObserver(debouncedRm)
            .observe(document.body, {
                childList: true, 
                subtree: true
            });
    })();
rchaud 2 days ago | parent | prev [-]

Privacy respecting ads are those on TV and printed newspapers. Targeted ads are where the money has been for a quarter of a century.