About Deployment
Enterprise deployment has two parts: force-installing the extension via MDM so it appears on every managed browser, and delivering a managed config so the extension self-enrolls without user...
Enterprise deployment has two parts: force-installing the extension via MDM so it appears on every managed browser, and delivering a managed config so the extension self-enrolls without user interaction.
| Availability | Preview |
| Plan | Enterprise browser extension support |
| Verified | 2026-06-03 |
| Note | MDM inventory sync is not required for extension zero-touch enrollment. |
You will finish with
- The extension force-installed by browser policy.
- Managed config delivered through chrome.storage.managed.
- A paired extension with an AgentKeeper credential.
- A workstation/device row tied to the expected user when userEmail is present.
Zero-touch enrollment flow
Admin creates an org API key in AgentKeeper
(Settings → Access → API keys)
↓
Admin deploys browser policy via MDM:
- force_installed: lllalmnahkbikalapoancgfkiegfoiim + update URL
- managed config: { orgApiKey, userEmail }
↓
Browser installs extension automatically
↓
Extension reads chrome.storage.managed → orgApiKey present
↓
Extension self-enrolls with AgentKeeper backend
↓
Fleet view shows device bound to the correct user
The IT admin's only steps are: (1) get an org API key from AgentKeeper and (2) push the browser policy. No per-device configuration, no user action.
An AgentKeeper MDM connector can still be useful for device inventory and broader fleet workflows, but it is not part of browser extension self-enrollment. The extension pairs through the org API key in managed browser policy.
Extension IDs
| Store | Extension ID | Update URL |
|---|---|---|
| Chrome Web Store | lllalmnahkbikalapoancgfkiegfoiim | https://clients2.google.com/service/update2/crx |
| Firefox AMO | help@rad.security | AMO download URL; see Firefox |
Edge, Brave, Arc, Dia, and Vivaldi accept the same Chrome Web Store extension ID. No separate listing required.
To deploy to multiple Chromium browsers from a single Apple configuration profile on macOS, see macOS: Multi-browser. One .mobileconfig and one upload cover every browser.
Managed config schema
The extension reads three keys from chrome.storage.managed:
{
"orgApiKey": "ak_live_xxxxxxxx",
"backendUrl": "https://www.agentkeeper.dev/api",
"userEmail": "{{userPrincipalName}}"
}
| Key | Required | Description |
|---|---|---|
orgApiKey | Yes | Org API key from Settings → Access → API keys. Authenticates the extension and identifies which org this device belongs to. |
backendUrl | No | Defaults to https://www.agentkeeper.dev/api. Override only for on-prem deployments. |
userEmail | Recommended | The user's email address. When present, AgentKeeper immediately binds the device to the matching directory user. Use your MDM's variable substitution to inject automatically. |
MDM variable substitution for userEmail
| MDM | Variable |
|---|---|
| Microsoft Intune | {{userPrincipalName}} |
| Jamf | {EmailAddress} |
| Iru/Kandji | Static value (no per-user variable available in managed preferences) |
| Group Policy | Set through a login script; see Windows: GPO |
Without userEmail, the device still enrolls and events still flow. User binding happens on the next MDM sync cycle (every 30 minutes) once the extension's machine ID is matched to a directory user via email.
If you are not running MDM inventory sync, include userEmail. That is the direct way for zero-touch extension enrollment to bind the browser install to the expected directory user.
Step 1: Get an org API key
- Open Settings → Access → API keys in the AgentKeeper dashboard.
- Create a key named
Browser Extension Fleet(or any descriptive name). - Copy the key. It starts with
ak_live_.
This key is used in the managed config orgApiKey field pushed to every managed device.
Step 2: Choose a deployment path
Select the guide for your MDM and operating system:
| OS | MDM | Guide |
|---|---|---|
| Windows | Microsoft Intune | Windows: Intune |
| Windows | Group Policy | Windows: GPO |
| macOS | Jamf | macOS: Jamf |
| macOS | Iru/Kandji | macOS: Iru/Kandji |
| macOS | Microsoft Intune | macOS: Intune |
| macOS | Jamf / Iru/Kandji / Intune (multi-browser) | macOS: Multi-browser |
| Any | Firefox | Firefox |
| Firefox (any OS) | policies.json | Firefox |
| Chrome (cloud) | Google Workspace Admin | Google Workspace |
Verifying after rollout
After policy is pushed, confirm on a managed machine:
chrome://policyshowsExtensionInstallForcelistwith the AgentKeeper entry.chrome://extensionsshows AgentKeeper with "Installed by your administrator".- The extension popup shows "Paired" within seconds of first launch.
- The device appears in Inventory → Workstations in the AgentKeeper dashboard.
See Verifying deployment for the full validation checklist.
Prove it worked
chrome://policyshows the force-install and managed config keys.- The extension cannot be removed by the user.
- The popup shows Paired.
- Workstations shows the browser device with the expected user when
userEmailwas delivered. - The first supported AI site event appears in Activity.
If this fails