From 4d2ae97d4fc9aa72171191fe1fadfbec1c90e911 Mon Sep 17 00:00:00 2001 From: pyllyukko Date: Sun, 23 Sep 2018 23:05:14 +0300 Subject: [PATCH] "System add-on" -> "system add-on updates" https://github.com/pyllyukko/user.js/commit/75023b38c542ca0a46f9ec84af7ae81ce2037df4#commitcomment-30610161 --- README.md | 4 ++-- user.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2937b88..4a01ec3 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ Harden preferences related to external plugins * Updates addons automatically [ [1](https://blog.mozilla.org/addons/how-to-turn-off-add-on-updates/) ] * Enable add-on and certificate blocklists (OneCRL) from Mozilla [ [1](https://wiki.mozilla.org/Blocklisting) [2](https://blocked.cdn.mozilla.net/) [3](http://kb.mozillazine.org/Extensions.blocklist.enabled) [4](http://kb.mozillazine.org/Extensions.blocklist.url) [5](https://blog.mozilla.org/security/2015/03/03/revoking-intermediate-certificates-introducing-onecrl/) ] * Decrease system information leakage to Mozilla blocklist update servers [ [1](https://trac.torproject.org/projects/tor/ticket/16931) ] -* Disable system add-ons (hidden & always-enabled add-ons from Mozilla) [ [1](https://firefox-source-docs.mozilla.org/toolkit/mozapps/extensions/addon-manager/SystemAddons.html) [2](https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/) [3](https://github.com/pyllyukko/user.js/issues/419) [4](https://dxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/AddonManager.jsm#1248-1257) ] +* Disable system add-on updates (hidden & always-enabled add-ons from Mozilla) [ [1](https://firefox-source-docs.mozilla.org/toolkit/mozapps/extensions/addon-manager/SystemAddons.html) [2](https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/) [3](https://github.com/pyllyukko/user.js/issues/419) [4](https://dxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/AddonManager.jsm#1248-1257) ] ### Firefox (anti-)features / components @@ -424,7 +424,7 @@ Hardening your often implies a trade-off with ease-of-use and comes with reduced * Enabling Mixed Display Content blocking can prevent images/styles... from loading properly when connection to the website is only partially secured * Disabling SVG support breaks many UI elements on many sites * Disabling nonessential protocols breaks all interaction with custom protocols such as mailto:, irc:, magnet: ... and breaks opening third-party mail/messaging/torrent/... clients when clicking on links with these protocols -* Disabling system add-ons prevents Mozilla from "hotfixing" your browser to patch critical problems (one possible use case from the documentation) +* Disabling system add-on updates prevents Mozilla from "hotfixing" your browser to patch critical problems (one possible use case from the documentation) * Containers are not available in Private Browsing mode * Fully automatic updates are disabled and left to package management systems on Linux. Windows users may want to change this setting. * Update check page might incorrectly report Firefox ESR as out-of-date diff --git a/user.js b/user.js index 78924c7..8da0799 100644 --- a/user.js +++ b/user.js @@ -432,12 +432,12 @@ user_pref("services.blocklist.update_enabled", true); // https://trac.torproject.org/projects/tor/ticket/16931 user_pref("extensions.blocklist.url", "https://blocklist.addons.mozilla.org/blocklist/3/%APP_ID%/%APP_VERSION%/"); -// PREF: Disable system add-ons (hidden & always-enabled add-ons from Mozilla) +// PREF: Disable system add-on updates (hidden & always-enabled add-ons from Mozilla) // https://firefox-source-docs.mozilla.org/toolkit/mozapps/extensions/addon-manager/SystemAddons.html // https://blog.mozilla.org/data/2018/08/20/effectively-measuring-search-in-firefox/ // https://github.com/pyllyukko/user.js/issues/419 // https://dxr.mozilla.org/mozilla-central/source/toolkit/mozapps/extensions/AddonManager.jsm#1248-1257 -// NOTICE: Disabling system add-ons prevents Mozilla from "hotfixing" your browser to patch critical problems (one possible use case from the documentation) +// NOTICE: Disabling system add-on updates prevents Mozilla from "hotfixing" your browser to patch critical problems (one possible use case from the documentation) user_pref("extensions.systemAddon.update.enabled", false); /****************************************************************************** -- 2.11.4.GIT