commit 3c16354887c39eb319f27de7b28a9fe133cd8ad3 Author: Yawning Angel yawning@schwanenlied.me Date: Tue Jul 18 22:14:20 2017 +0000
Bug 22969: Disable the addon blocklist.
Leaking information to Mozilla is bad, the container setup takes step not to allow non-standard extensions, and it's totally unsupported anyway. --- ChangeLog | 1 + data/installer/mozilla.cfg | 4 ++++ 2 files changed, 5 insertions(+)
diff --git a/ChangeLog b/ChangeLog index 963c26a..9a21399 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ Changes in version 0.0.12 - UNRELEASED: + * Bug 22969: Disable the addon blocklist.
Changes in version 0.0.11 - 2017-07-18: * Bug 22910: Deprecate the volatile extension dir option. diff --git a/data/installer/mozilla.cfg b/data/installer/mozilla.cfg index 64f0e60..0ce67a1 100644 --- a/data/installer/mozilla.cfg +++ b/data/installer/mozilla.cfg @@ -30,3 +30,7 @@ lockPref("toolkit.startup.max_resumed_crashes", -1); // gets "telemetery" using Google Analytics, and extensions are individually // read-only bind mounted in, so it will not work at all. lockPref("extensions.getAddons.showPane", false); + +// Disable the addon blocklist, because it leaks information about the browser +// install date among other things to Mozilla. +lockPref("extensions.blocklist.enabled", false);
tor-commits@lists.torproject.org