From 60c7a64c1fb352cf68376ae048fae5313b5d561e Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 6 Apr 2023 22:10:11 +0000 Subject: [PATCH] autoconfig: disable firefox-view feature --- src/mobile-config-autoconfig.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mobile-config-autoconfig.js b/src/mobile-config-autoconfig.js index e397cbe..6f1f4e3 100644 --- a/src/mobile-config-autoconfig.js +++ b/src/mobile-config-autoconfig.js @@ -283,6 +283,12 @@ function set_default_prefs() { // Show about:home in new tabs, so it's not just a weird looking completely // empty page. defaultPref('browser.newtabpage.enabled', true); + + // Disable "Firefox View" feature by default. It's a pinned tab that allows + // to "pick up" tabs from other devices after registering an account, and + // shows recently closed tabs. The always pinned tab takes up screen estate + // and it's slightly annoying if you do not want to register an account. + defaultPref('browser.tabs.firefox-view', false); } function main() {