Platform Keys

platformKeys
Medium RiskCategory: System & PerformanceView Official Docs

Technical Context

Provides access to platform-managed cryptographic keys for signing and verification operations. This enables secure authentication without exposing private keys.

What This Means For You

The extension can use secure cryptographic keys managed by your system. This enables strong authentication while keeping your keys protected.

Related APIs

This permission enables access to these Chrome APIs:

chrome.platformKeys

Common Use Cases

  • Secure authentication
  • Digital signatures

How to Declare in manifest.json

Add the "platformKeys" permission to your extension manifest:

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

Related Permissions