tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 087ce54afcaa6cdb815520c4e6de7f87fed3f93d
parent 41d0b14476708892ef9aedbd179bd7e765db64c0
Author: Henry Wilkes <henry@torproject.org>
Date:   Mon, 26 Jan 2026 12:30:38 +0000

fixup! Firefox preference overrides.

TB 44460: Update the autofill preferences in line with upstream's new
preferences.

Diffstat:
Mbrowser/app/profile/001-base-profile.js | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/browser/app/profile/001-base-profile.js b/browser/app/profile/001-base-profile.js @@ -83,8 +83,18 @@ pref("signon.rememberSignons", false); pref("browser.formfill.enable", false); pref("signon.formlessCapture.enabled", false); // Added with tor-browser#41496 pref("signon.autofillForms", false); +// NOTE: extensions.formautofill.available is a legacy preference that upstream +// has not removed yet, and is only used for a migration to the newer +// "*.supported" preferences. See bugzilla bug 1745248. pref("extensions.formautofill.available", ""); +// Suppress formautofill component. tor-browser#44460. +// NOTE: With the "formautofill" built-in extension removed from Base Browser +// builds, some of these preferences have almost no effect at the time of +// implementation, but we include them in case they help with future-proofing. +pref("extensions.formautofill.addresses.supported", "off"); +pref("extensions.formautofill.addresses.experiments.enabled", false); pref("extensions.formautofill.addresses.enabled", false); +pref("extensions.formautofill.creditCards.supported", "off"); pref("extensions.formautofill.creditCards.enabled", false); // Do not store extra data (form, scrollbar positions, cookies, POST data) for // the session restore functionality.