From 966d784bcc689b94a65433e4dbadb2407925e637 Mon Sep 17 00:00:00 2001 From: Hal <11689349+yokoffing@users.noreply.github.com> Date: Thu, 20 Jun 2024 09:56:20 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index 11b1f56..1c5e745 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -13,15 +13,15 @@ ### Firefox Sync & View -Firefox [Sync](https://support.mozilla.org/en-US/kb/how-do-i-set-sync-my-computer) and Firefox [View](https://support.mozilla.org/en-US/kb/how-set-tab-pickup-firefox-view) may be disabled to minimize connections and remove unused UI. +Firefox [Sync](https://support.mozilla.org/en-US/kb/how-do-i-set-sync-my-computer) and Firefox [View](https://support.mozilla.org/en-US/kb/how-set-tab-pickup-firefox-view#w_what-is-firefox-view) may be disabled to minimize connections and remove unused UI. + +As of around June 2024, users are no longer able to disable Firefox View. To remove the icon from the toolbar, follow the instructions [here](https://support.mozilla.org/en-US/kb/how-set-tab-pickup-firefox-view#w_how-do-i-remove-firefox-view-from-the-tabs-bar). ```javascript // PREF: disable Firefox Sync user_pref("identity.fxaccounts.enabled", false); -// PREF: disable Firefox View -user_pref("browser.tabs.firefox-view", false); -user_pref("browser.tabs.firefox-view-next", false); +// PREF: disable the Firefox View tour from popping up user_pref("browser.firefox-view.feature-tour", "{\"screen\":\"\",\"complete\":true}"); ```