From e22720c62f73bc46d5fefcc6d8dba9c0fbd5608e Mon Sep 17 00:00:00 2001 From: pyllyukko Date: Tue, 17 Jan 2023 17:12:15 +0200 Subject: [PATCH] Disable (parts of?) "TopSites" --- README.md | 1 + user.js | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index b67161b..cbf3f08 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,7 @@ Prevents the browser from [auto-connecting](https://support.mozilla.org/en-US/kb * Disable downloading homepage snippets/messages from Mozilla [ [1](https://support.mozilla.org/en-US/kb/how-stop-firefox-making-automatic-connections#w_mozilla-content) [2](https://wiki.mozilla.org/Firefox/Projects/Firefox_Start/Snippet_Service) ] * Never check updates for search engines [ [1](https://support.mozilla.org/en-US/kb/how-stop-firefox-making-automatic-connections#w_auto-update-checking) ] * Disable automatic captive portal detection (Firefox >= 52.0) [ [1](https://support.mozilla.org/en-US/questions/1157121) ] +* Disable (parts of?) "TopSites" ### HTTP diff --git a/user.js b/user.js index 7786885..f46e498 100644 --- a/user.js +++ b/user.js @@ -701,6 +701,11 @@ user_pref("browser.search.update", false); // https://support.mozilla.org/en-US/questions/1157121 user_pref("network.captive-portal-service.enabled", false); +// PREF: Disable (parts of?) "TopSites" +user_pref("browser.topsites.contile.enabled", false); +user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); +user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); + /****************************************************************************** * SECTION: HTTP * ******************************************************************************/ -- 2.11.4.GIT