Enterprise Platform Keys

enterprise.platformKeys
Medium RiskCategory: System & PerformanceView Official Docs

Technical Context

Enables access to platform-managed cryptographic keys in enterprise Chrome environments. This allows secure authentication using hardware-backed certificates.

What This Means For You

In company-managed Chrome, the extension can use secure certificates installed by your IT department for authentication. This enables secure enterprise login.

Related APIs

This permission enables access to these Chrome APIs:

chrome.enterprise.platformKeys

Common Use Cases

  • Enterprise SSO
  • Certificate management

How to Declare in manifest.json

Add the "enterprise.platformKeys" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "enterprise.platformKeys"
  ]
}

Related Permissions