| ... |
... |
@@ -83,8 +83,18 @@ pref("signon.rememberSignons", false, locked); |
|
83
|
83
|
pref("browser.formfill.enable", false, locked);
|
|
84
|
84
|
pref("signon.formlessCapture.enabled", false); // Added with tor-browser#41496
|
|
85
|
85
|
pref("signon.autofillForms", false, locked);
|
|
|
86
|
+// NOTE: extensions.formautofill.available is a legacy preference that upstream
|
|
|
87
|
+// has not removed yet, and is only used for a migration to the newer
|
|
|
88
|
+// "*.supported" preferences. See bugzilla bug 1745248.
|
|
86
|
89
|
pref("extensions.formautofill.available", "");
|
|
|
90
|
+// Suppress formautofill component. tor-browser#44460.
|
|
|
91
|
+// NOTE: With the "formautofill" built-in extension removed from Base Browser
|
|
|
92
|
+// builds, some of these preferences have almost no effect at the time of
|
|
|
93
|
+// implementation, but we include them in case they help with future-proofing.
|
|
|
94
|
+pref("extensions.formautofill.addresses.supported", "off");
|
|
|
95
|
+pref("extensions.formautofill.addresses.experiments.enabled", false);
|
|
87
|
96
|
pref("extensions.formautofill.addresses.enabled", false);
|
|
|
97
|
+pref("extensions.formautofill.creditCards.supported", "off");
|
|
88
|
98
|
pref("extensions.formautofill.creditCards.enabled", false);
|
|
89
|
99
|
// Do not store extra data (form, scrollbar positions, cookies, POST data) for
|
|
90
|
100
|
// the session restore functionality.
|