Live data from Hacker News

Purge site data when site identified via old tracking cookies

bugzilla.mozilla.org

101–110 of 135 posts

Re: Purge site data when site identified via old tracking cookies

#101
post #54
post #51

Earlier quoted context omitted.

delete indexedDB; in userjs is all it takes in Chrome to disable indexedDB permanently

It is still possible for websites to access indexedDB by using Web Workers: new Worker("data:application/javascript,console.log('indexedDB: ', indexedDB)") This works since userscripts only run in top-level websites and frames, but the above code runs JS code in a seperate thread with no attached DOM.

    if ('serviceWorker' in window.navigator) navigator.serviceWorker.register = () => new Promise( function(resolve, reject) {} );
disables webworkers from ever working.

Re: Purge site data when site identified via old tracking cookies

#102
post #98

Earlier quoted context omitted.

>> It blocks tracking / ads on devices where you can’t edit a hosts list (your phone) > Right, but you can use adblockers on them. The iPhone doesn't support ad blocking.

It very much does.

Elaborate? I'm not aware of a way to block in-app ads, or ads served when using Chrome / Safari / Firefox on iOS without using a DNS based ad blocker.

Re: Purge site data when site identified via old tracking cookies

#103
post #98

Earlier quoted context omitted.

>> It blocks tracking / ads on devices where you can’t edit a hosts list (your phone) > Right, but you can use adblockers on them. The iPhone doesn't support ad blocking.

It very much does.

Devices such as Amazon Fire, Apple TV, your television, DVR, etc, etc do not support installing ad blockers.

Re: Purge site data when site identified via old tracking cookies

#104
post #102

Earlier quoted context omitted.

It very much does.

Elaborate? I'm not aware of a way to block in-app ads, or ads served when using Chrome / Safari / Firefox on iOS without using a DNS based ad blocker.

You can block ads in Safari or apps using SFSafariViewController by installing a content blocker. You can use a VPN-based blocker to perform DNS blocking on-device.

Re: Purge site data when site identified via old tracking cookies

#105

Earlier quoted context omitted.

It very much does.

Devices such as Amazon Fire, Apple TV, your television, DVR, etc, etc do not support installing ad blockers.

None of those really have a browser on them, though…

Re: Purge site data when site identified via old tracking cookies

#106
post #97
post #83

Earlier quoted context omitted.

- It blocks tracking / ads on devices where you can’t edit a hosts list (your phone) - It works for your entire network (everyone in your household)

> "It works for your entire network (everyone in your household)" I guess whether this is the killer feature or makes it suck depends on whether you've got a lot of devices and family members in your household that you can now easily protect with a single solution, or you're a single person with a laptop that spends half the time (or more) outside your home. It's fantastic for the first group, useless for the second.

Also, you don't have to choose one or the other.

I use both.

Ad blockers and Pi Hole each have pros/cons, but using them together gives you the best of both worlds (with the only downside being the overhead of running an adblocking extension or overhead of managing/updating a hosts file block list)

Re: Purge site data when site identified via old tracking cookies

#108

I wouldn't mind going back to a JavaScript-less web experience. I know not all tracking is based on JS, but the browser provides so many heuristics this way: screen size, cursor location, installed plugins. Give me reasonably formatted HTML, and something a little bit more powerful than curl.

I've moved my blog long time ago to static pages. I've removed Google Analytics long time ago too. Now I have a slickest web experience and the reports of searchs and server usage is increasing.

Re: Purge site data when site identified via old tracking cookies

#109

Earlier quoted context omitted.

Devices such as Amazon Fire, Apple TV, your television, DVR, etc, etc do not support installing ad blockers.

None of those really have a browser on them, though…

Half the point of pihole is to block trackers (not just ads).

That means blocking Google Analytics, Crashlytics, and whatever other unnecessary analytics / reporting that apps on Apple TV, your smart TV, etc use.

Re: Purge site data when site identified via old tracking cookies

#110
post #98

Earlier quoted context omitted.

>> It blocks tracking / ads on devices where you can’t edit a hosts list (your phone) > Right, but you can use adblockers on them. The iPhone doesn't support ad blocking.

It very much does.

I didn't know this and I now see I can block ads on Safari on iOS which is great.

Unfortunately, it doesn't work for Firefox on iOS.

Post reply on HN