autoconfig: disable firefox-view feature

This commit is contained in:
Oliver Smith 2023-04-06 22:10:11 +00:00
parent 4d9ae227e2
commit 60c7a64c1f
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -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() {