From 78ea5355a4dc07e1e582d15c2bf2328bbf62f56f Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Wed, 28 Jan 2026 10:28:38 -0500 Subject: [PATCH] Add DefaultGeolocationSetting policy to suppress location permission popups Set DefaultGeolocationSetting to 2 (BlockGeolocation) to prevent all location permission popups from appearing in Chrome. This blocks geolocation requests for all sites without prompting the user. Verified against Chromium source at /home/debianuser/chromium-cache/src: - Policy name: DefaultGeolocationSetting - Value 2 = BlockGeolocation (blocks all geolocation requests) - Policy definition: components/policy/resources/templates/policy_definitions/ContentSettings/DefaultGeolocationSetting.yaml --- 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 5b8755fc..e1fa4490 100644 --- a/shared/chromium-policies/managed/policy.json +++ b/shared/chromium-policies/managed/policy.json @@ -3,6 +3,7 @@ "AutofillCreditCardEnabled": false, "TranslateEnabled": false, "DefaultNotificationsSetting": 2, + "DefaultGeolocationSetting": 2, "DefaultSearchProviderEnabled": true, "DefaultSearchProviderName": "DuckDuckGo", "DefaultSearchProviderSearchURL": "https://duckduckgo.com/?q={searchTerms}",