]> gitweb.michael.orlitzky.com - firefox-user-prefs.git/commitdiff
ui: disable form/password autofill
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 13 Mar 2026 16:54:13 +0000 (12:54 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 13 Mar 2026 17:28:22 +0000 (13:28 -0400)
ui

diff --git a/ui b/ui
index aca2a2d6b15ae48568e0a181229e7ea7620ce0d5..7e3b0919df3d6a02edda0c297da48a50d6e5649f 100644 (file)
--- a/ui
+++ b/ui
@@ -160,3 +160,13 @@ user_pref("privacy.sanitize.sanitizeOnShutdown", true);
 /* Don't Recommend extensions or features as I browse" */
 user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons", false);
 user_pref("browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features", false);
+
+/* Don't remember passwords or anything else sensitive, and definitely don't
+ * autofill forms with them.
+ */
+user_pref("dom.forms.autocomplete.formautofill", false);
+user_pref("signon.rememberSignons", false);
+user_pref("extensions.formautofill.creditCards.enabled", false);
+user_pref("extensions.formautofill.addresses.enabled", false);
+user_pref("extensions.formautofill.addresses.capture.enabled", false);
+user_pref("extensions.formautofill.available", "off");