Moved browser extensions to configuration

This commit is contained in:
Kevin Veen-Birkenbach 2025-04-01 12:24:52 +02:00
parent 887db59a57
commit 659c24eb14
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
7 changed files with 35 additions and 22 deletions

View File

@ -83,6 +83,12 @@ defaults_applications:
css_enabled: "{{css_enabled_default}}" # Enables\Disables Global CSS Style
landingpage_iframe_enabled: "{{landingpage_iframe_enabled_default}}" # Enables\Disables the possibility to embed this on landing page via iframe
# Chromium Browser
chromium:
plugins: # Plugins to be installed in Chromium
- "cjpalhdlnbpafiamejdnhcphjbkeiagm;https://clients2.google.com/service/update2/crx" # U-Block Origine Plugin
- "oboonakemofpalcgghocfoadofidjkkk;https://clients2.google.com/service/update2/crx" # KeepassXC Plugin
coturn: # @todo implement
credentials:
user: turnuser
@ -109,6 +115,12 @@ defaults_applications:
css_enabled: "{{css_enabled_default}}" # Enables\Disables Global CSS Style
landingpage_iframe_enabled: "true" # Landingpage should be embeded in portfolio
# Firefox Browser
firefox:
plugins: # Plugins to be installed in Firefox
- "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" # U-Block Origine Plugin
- "https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi" # KeepassXC Plugin
## Friendica
friendica:
version: "latest"

View File

@ -1,7 +0,0 @@
{
"ExtensionInstallForcelist": [
"cjpalhdlnbpafiamejdnhcphjbkeiagm;https://clients2.google.com/service/update2/crx",
"oboonakemofpalcgghocfoadofidjkkk;https://clients2.google.com/service/update2/crx"
]
}

View File

@ -21,7 +21,7 @@
mode: '0755'
- name: Copy the extensions policy file for Chromium
copy:
src: extensions_policy.json
template:
src: extensions_policy.json.j2
dest: /etc/chromium/policies/managed/extensions_policy.json
mode: '0644'

View File

@ -0,0 +1,7 @@
{
"ExtensionInstallForcelist": [
{% for plugin in applications[application_id].plugins -%}
"{{ plugin }}"{% if not loop.last %},{% endif %}
{% endfor %}
]
}

View File

@ -1,11 +0,0 @@
{
"policies": {
"Extensions": {
"Install": [
"https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi",
"https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi"
]
}
}
}

View File

@ -11,7 +11,7 @@
mode: '0755'
- name: Deploy Firefox Enterprise Policies file
copy:
src: policies.json
template:
src: policies.json.j2
dest: "{{ firefox_policy_file }}"
mode: '0644'

View File

@ -0,0 +1,12 @@
{
"policies": {
"Extensions": {
"Install": [
{% for plugin in applications[application_id].plugins -%}
"{{ plugin }}"{% if not loop.last %},{% endif %}
{% endfor %}
]
}
}
}