From 500f8b508d52b456904be1e4b7aca2bcf7dd94e1 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 2 Apr 2025 01:14:01 +0200 Subject: [PATCH] Disabled password managers for chromium and firefox, due to keepassxc support --- roles/pc-browser-chromium/templates/extensions_policy.json.j2 | 3 ++- roles/pc-browser-firefox/templates/policies.json.j2 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/roles/pc-browser-chromium/templates/extensions_policy.json.j2 b/roles/pc-browser-chromium/templates/extensions_policy.json.j2 index 7696059f..6f511cd3 100644 --- a/roles/pc-browser-chromium/templates/extensions_policy.json.j2 +++ b/roles/pc-browser-chromium/templates/extensions_policy.json.j2 @@ -3,5 +3,6 @@ {% for plugin in applications[application_id].plugins -%} "{{ plugin }}"{% if not loop.last %},{% endif %} {% endfor %} - ] + ], + "PasswordManagerEnabled": false } \ No newline at end of file diff --git a/roles/pc-browser-firefox/templates/policies.json.j2 b/roles/pc-browser-firefox/templates/policies.json.j2 index fdccdd1d..f9c80a0e 100644 --- a/roles/pc-browser-firefox/templates/policies.json.j2 +++ b/roles/pc-browser-firefox/templates/policies.json.j2 @@ -6,7 +6,8 @@ "{{ plugin }}"{% if not loop.last %},{% endif %} {% endfor %} ] - } + }, + "DisablePasswordManager": true } } \ No newline at end of file