mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	Shortend desktop to desk
This commit is contained in:
		| @@ -0,0 +1,23 @@ | ||||
| # 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" | ||||
| @@ -0,0 +1,20 @@ | ||||
| { | ||||
|   "ExtensionInstallForcelist": [ | ||||
|     {% for plugin in applications[application_id].chromium.plugins -%} | ||||
|     "{{ plugin.id }};{{ plugin.update_url }}"{% if not loop.last %},{% endif %} | ||||
|     {% endfor %} | ||||
|   ], | ||||
|   "ExtensionSettings": { | ||||
|     "*": { | ||||
|       "installation_mode": "{{ applications[application_id].default_installation_mode }}" | ||||
|     } | ||||
|     {% for plugin in applications[application_id].chromium.plugins -%}, | ||||
|     "{{ plugin.id }}": { | ||||
|       "installation_mode": "{{ plugin.installation_mode }}", | ||||
|       "update_url": "{{ plugin.update_url }}", | ||||
|       "incognito_mode": "{{ 'enabled' if plugin.incognito else 'disabled' }}" | ||||
|     } | ||||
|     {% endfor %} | ||||
|   }, | ||||
|   "PasswordManagerEnabled": {{ applications[application_id].password_manager_enabled }} | ||||
| } | ||||
		Reference in New Issue
	
	Block a user