-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable "Privacy" Sandbox in Chrome #2810
Comments
uBlock Origin already disables those APIs, albeit through a different method: #2714 (comment) |
Maybe "Disable hyperlink auditing" setting could just become "Disable advertiser-friendly APIs", which would just disable everything which is primarily meant to serve advertisers, so hyperlink auditing, and all new Chromium APIs re. "privacy sandbox". We had a case where disabling the topic API broke some site, it would be interesting to find out if that site would be broken as well when toggling these settings. |
Everything I have learned of it is that Chrome implements it via a setting within the browser. I would think those who would know that it is a choice would already make the decision within their browser's settings. And finally, from everything I have learned on security podcasts, Google Topics (the new name for it) actually preserves privacy in several ways.
The whole premise is that it doesn't track you. Instead, it's more akin to how ads used to be in the paper world. If I read Mens Health they probably just think I am a dude. That's it. I'm probably going to see ads for cologne, cars, and protein powder. I would rather have that than a 47 y.o. male from Boston who makes $80,000/yr and likes collecting flashlights and eating pizza. It doesn't read to me to be tracking, per se. As I understand it, there is little value to store anything on their servers about me which is what I really don't want. Yeah, I hate ads as well, that is why I block them. But the tracking aspect is actually lessened by the concept. I just think a browser add-on developing its own implementation to disable the function could be overengineering and confusing if the user did choose to opt in w/in their browser's own settings. Personally, I wish I had an addon that rethought some concepts. First, take out the features and rules which can be controlled within the browser itself. And try to address the root causes more rather than the symptoms. If all else fails, hide the symptom. |
I implemented the proposed change here, I can make adjustments to it in order to make it acceptable to merge upstream. A few things need to be done still:
|
I am going to pull these changes in next dev cycle, as I want the current dev to reach stable status as soon as possible and it's best to have that sort of changes made at the start of a dev cycle to ensure they are tested for as long as possible before released to stable. |
Prerequisites
I tried to reproduce the issue when...
Description
Why?
While people migrate to Browsers that treat them as a resource to mine, disabling the "privacy" sandbox can help protect them.
How?
chrome.privacy.websites.topicsEnabled.set({value: false});
chrome.privacy.websites.fledgeEnabled.set({value: false});
chrome.privacy.websites.adMeasurementEnabled.set({value: false});
From
https://developer.chrome.com/docs/extensions/reference/privacy/
A specific URL where the issue occurs.
https://developer.chrome.com/docs/extensions/reference/privacy/
Steps to Reproduce
n/a
Expected behavior
n/a
Actual behavior
n/a
uBO version
1.51.0
Browser name and version
Google Chrome 116.0.5845.179
Operating System and version
macOS Version 13.5.2 (Build 22G91)
The text was updated successfully, but these errors were encountered: