From 2d00df39465ad1a7dd66b502aa7319b44c1dde9b Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Sat, 31 Jan 2026 09:21:34 -0500 Subject: [PATCH] fix: disable Chrome address autofill prompts Add AutofillAddressEnabled: false to Chrome policy file to prevent "save address" prompts. AutofillCreditCardEnabled was already set. --- shared/chromium-policies/managed/policy.json | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/chromium-policies/managed/policy.json b/shared/chromium-policies/managed/policy.json index e1fa4490..bb6c32d1 100644 --- a/shared/chromium-policies/managed/policy.json +++ b/shared/chromium-policies/managed/policy.json @@ -1,5 +1,6 @@ { "PasswordManagerEnabled": false, + "AutofillAddressEnabled": false, "AutofillCreditCardEnabled": false, "TranslateEnabled": false, "DefaultNotificationsSetting": 2,