Skip to content

Instantly share code, notes, and snippets.

@keyboardcrunch
Created June 1, 2023 23:19
Show Gist options
  • Save keyboardcrunch/afcc156a8830610f44abe6f84a84960e to your computer and use it in GitHub Desktop.
Save keyboardcrunch/afcc156a8830610f44abe6f84a84960e to your computer and use it in GitHub Desktop.
Chrome Enterprise Linux policy - allows all hosted extensions and uBlock-Origin
# Allows install of any locally hosted extensions, restricts webstore extensions without explicit allow.
{
"HomepageLocation": "https://www.google.com",
"HomepageIsNewTabPage": false,
"ExtensionSettings": {
"*": {
"installation_mode": "blocked",
"blocked_install_message": "Extension installation is restricted to reviewed and approved only.",
"blocked_permissions": [],
"install_sources": [
"*://localhost:8000/*",
"http://127.0.0.1:8000/*",
"file:///*"
]
},
"cjpalhdlnbpafiamejdnhcphjbkeiagm": {
"installation_mode": "allowed",
"override_update_url": true,
"toolbar_pin": "force_pinned"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment