mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-17 14:04:24 +02:00
Solved bugs identified during unit test
This commit is contained in:
parent
92245b5935
commit
e8992f254c
22
roles/desk-chromium/config/main.yml
Normal file
22
roles/desk-chromium/config/main.yml
Normal file
@ -0,0 +1,22 @@
|
||||
# Concerning configuration options checkout:
|
||||
# https://chromeenterprise.google/policies/#ExtensionSettings
|
||||
password_manager_enabled: false
|
||||
default_installation_mode: allowed
|
||||
plugins:
|
||||
# UBlock Origin
|
||||
- id: "cjpalhdlnbpafiamejdnhcphjbkeiagm"
|
||||
update_url: "https://clients2.google.com/service/update2/crx"
|
||||
incognito: true
|
||||
installation_mode: "force_installed"
|
||||
|
||||
# KeepassXC
|
||||
- id: "ddkjiahejlhfcafbddmgiahcphecmpfh"
|
||||
update_url: "https://clients2.google.com/service/update2/crx"
|
||||
incognito: false
|
||||
installation_mode: "force_installed"
|
||||
|
||||
# Dark Mode Extension
|
||||
- id: "dmghijelimhndkbmpgbldicpogfkceaj"
|
||||
update_url: "https://clients2.google.com/service/update2/crx"
|
||||
incognito: true
|
||||
installation_mode: "force_installed"
|
@ -1,23 +0,0 @@
|
||||
# Concerning configuration options checkout:
|
||||
# https://chromeenterprise.google/policies/#ExtensionSettings
|
||||
chromium:
|
||||
password_manager_enabled: false
|
||||
default_installation_mode: allowed
|
||||
plugins:
|
||||
# UBlock Origin
|
||||
- id: "cjpalhdlnbpafiamejdnhcphjbkeiagm"
|
||||
update_url: "https://clients2.google.com/service/update2/crx"
|
||||
incognito: true
|
||||
installation_mode: "force_installed"
|
||||
|
||||
# KeepassXC
|
||||
- id: "ddkjiahejlhfcafbddmgiahcphecmpfh"
|
||||
update_url: "https://clients2.google.com/service/update2/crx"
|
||||
incognito: false
|
||||
installation_mode: "force_installed"
|
||||
|
||||
# Dark Mode Extension
|
||||
- id: "dmghijelimhndkbmpgbldicpogfkceaj"
|
||||
update_url: "https://clients2.google.com/service/update2/crx"
|
||||
incognito: true
|
||||
installation_mode: "force_installed"
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"ExtensionInstallForcelist": [
|
||||
{% for plugin in applications | get_app_conf(application_id, 'chromium.plugins', True) -%}
|
||||
{% for plugin in applications | get_app_conf(application_id, 'plugins', True) -%}
|
||||
"{{ plugin.id }};{{ plugin.update_url }}"{% if not loop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
],
|
||||
@ -8,7 +8,7 @@
|
||||
"*": {
|
||||
"installation_mode": "{{ applications | get_app_conf(application_id, 'default_installation_mode', True) }}"
|
||||
}
|
||||
{% for plugin in applications | get_app_conf(application_id, 'chromium.plugins', True) -%},
|
||||
{% for plugin in applications | get_app_conf(application_id, 'plugins', True) -%},
|
||||
"{{ plugin.id }}": {
|
||||
"installation_mode": "{{ plugin.installation_mode }}",
|
||||
"update_url": "{{ plugin.update_url }}",
|
||||
|
Loading…
x
Reference in New Issue
Block a user