再次将 Firefox 设为私有
Make Firefox Private Again

原始链接: https://make-firefox-private-again.com/

此脚本修改 Firefox 设置以禁用私人归属功能。 此功能收集所访问网站的数据,这可能会影响用户隐私。 该脚本将“dom.private-attribution.submission.enabled”的值设置为 false 以关闭此功能。 要应用更改,您需要重新启动 Firefox。 您可以使用以下步骤通过命令行获取该脚本: 1. 打开终端并执行给定的代码片段,将脚本添加到您的 Firefox 配置文件中。 ````bash echo 'user_pref("dom.private-attribution.submission.enabled", false);' | tee -a ~/.mozilla/firefox/[你的 Firefox 配置文件]/user.js echo '重新启动 Firefox 以使更改生效' ```` 2. 如果需要,请打开 Firefox 并导航至“about:config”来验证是否已进行更改。 检查“dom.private-attribution.submission.enabled”的值是否已设置为 false。 3. 或者,您可以从[此链接](https://make-firefox-private-again.com)获取脚本并直接使用命令行运行它(`sh make-firefox-private-again.com` )。 该脚本的灵感来自于 [Make Linux Fast Again](https://web.archive.org/web/0/https://make-linux-fast-again.com/) 等类似工作,旨在保护用户隐私 浏览网页时。 请注意,某些版本的 Firefox 可能已经具有与此功能相关的合理默认配置,因此在应用脚本之前请进行检查。 最后,作者提到,与较小的项目替代品相比,他们更喜欢使用 Firefox,因为它的复杂性。 然而,他们目前对 Mozilla 的信任度相对较低。

互联网隐私问题日益严重,促使人们发起旨在创造更安全和匿名浏览体验的举措。 其中一项举措涉及 Mozilla 提出的 Project Ranger(以前称为 Enigmo),旨在减少对第三方跟踪器进行定向广告的依赖。 批评者认为,该计划涉及收集数据,将其发送到聚合服务器,然后将汇总数据发送回参与网站。 一些人认为这违背了增强隐私的目的,因为个人用户信息可能仍然容易受到攻击。 其他人担心这个过程可能会暴露敏感信息,导致知情同意问题。 此外,反对者强调该项目可能会对浏览器性能产生负面影响并损害用户的选择。 作为回应,Mozilla 澄清说,该项目的目的是在不影响浏览器功能的情况下防止跟踪,并表示不会出于任何目的收集或发送数据给 Mozilla。 相反,数据将被发送到由受信任的第三方(例如 Apple 或 Cloudflare)控制的聚合服务器,并在收到后立即丢弃。 目标是通过减少跟踪器的数量并最大限度地减少定向广告的可能性来增强用户隐私。 该项目旨在保护用户自主权,并为个人提供选择更加注重隐私的浏览体验的选项。 最终,批评者认为该项目的预期目标可能无法完全减轻对用户隐私造成的风险,并且可能需要进一步的透明度和改进以确保用户的信任和满意度。
相关文章

原文

echo 'user_pref("dom.private-attribution.submission.enabled", false);' | tee -a $HOME/.mozilla/firefox/$(grep "Default=.*\.default*" "$HOME/.mozilla/firefox/profiles.ini" | cut -d"=" -f2)/user.js echo 'Restart Firefox for the change to have effect' # What is this about? Read more here: # https://www.theregister.com/2024/06/18/mozilla_buys_anonym_betting_privacy/ # https://blog.mozilla.org/en/mozilla/privacy-preserving-attribution-for-advertising/ # # How to use: # curl https://make-firefox-private-again.com | sh # # # # Verify, or do it manually: # # about:config # # dom.private-attribution.submission.enabled # # set to false # # # # # Report issues to @[email protected], but # don't complain about curl | sh please. # I have only tested this on Fedora, let # me know if it worked or not on others. # # I am aware there are Firefox forks that # have sane defaults with regards to this # and other aspects. I prefer keep using # Firefox itself, because maintaining a # browser is an incredible difficult job # and I don't trust small projects to be # able to this, despite that my trust in # Mozilla is pretty low these days. # # Inspired by https://web.archive.org/web/0/https://make-linux-fast-again.com/

联系我们 contact @ memedata.com