summaryrefslogtreecommitdiff
path: root/libre/iceweasel
diff options
context:
space:
mode:
authorgrizzlyuser <grizzlyuser@protonmail.com>2020-03-25 11:34:12 +0200
committerAndreas Grapentin <andreas@grapentin.org>2020-03-27 21:44:53 +0100
commitd7c192738208c000267ee276220aa45afc50ca12 (patch)
treeed8acf1894ffe0998308296d81b26b0903344bef /libre/iceweasel
parent1de1bfcaca5849fb000da4d0cf442263b8ea374c (diff)
libre/iceweasel: Adjust vendor.js preferences for search engines and addons
This is mostly related to a recent switch of about:addons from XUL to HTML [1]. extensions.webservice.discoverURL has been removed upstream, see [2]. extensions.getAddons.search.url seems to be removed as well, but could not find any proofs except that source code search doesn't find it anymore. Couldn't see any effect from it either (see [4]). That's why removed those two. Also changed the search engines URL to a more appropriate one, and also disabled 'Recommendations' section the same way Tor Browser Bundle does this [3]. [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1558982 [2] https://bugzilla.mozilla.org/show_bug.cgi?id=1544011 [3] https://trac.torproject.org/projects/tor/ticket/22073 [4] http://kb.mozillazine.org/Extensions.getAddons.search.url Signed-off-by: Andreas Grapentin <andreas@grapentin.org>
Diffstat (limited to 'libre/iceweasel')
-rw-r--r--libre/iceweasel/vendor.js.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/libre/iceweasel/vendor.js.in b/libre/iceweasel/vendor.js.in
index 562f270d7..c4b4a13da 100644
--- a/libre/iceweasel/vendor.js.in
+++ b/libre/iceweasel/vendor.js.in
@@ -212,10 +212,8 @@ pref("media.peerconnection.ice.default_address_only", true);
pref("font.default.x-western", "sans-serif");
-// Preferences for the Get Add-ons panel and search engines
-pref("extensions.webservice.discoverURL", "https://directory.fsf.org/wiki/GNU_IceCat");
-pref("extensions.getAddons.search.url", "https://directory.fsf.org/wiki/GNU_IceCat");
-pref("browser.search.searchEnginesURL", "https://directory.fsf.org/wiki/GNU_IceCat");
+// URL for the 'Find more search engines' link in about:preferences#search
+pref("browser.search.searchEnginesURL", "https://directory.fsf.org/wiki/Collection:Search_engines");
// Mobile
pref("privacy.announcements.enabled", false);
@@ -320,3 +318,7 @@ pref("privacy.resistFingerprinting.block_mozAddonManager", true);
// Disable 'What's New' gift icon in toolbar and main menu.
// It shows downloaded news that sometimes contain links to non-free software like mobile Firefox.
pref("browser.messaging-system.whatsNewPanel.enabled", false);
+
+// Disable 'Recommendations' section in about:addons
+// Related to: https://labs.parabola.nu/issues/2409
+pref("extensions.getAddons.showPane", false);