Identity

identity
Low RiskCategory: CommunicationView Official Docs

Technical Context

Provides access to the chrome.identity API for OAuth2 authentication flows. This enables single sign-on with Google services and other OAuth providers without exposing the user's email.

What This Means For You

The extension can sign into services on your behalf using Google login or other authentication providers. By itself, it cannot see your email address.

Related APIs

This permission enables access to these Chrome APIs:

chrome.identity

Common Use Cases

  • Google integrations
  • OAuth login
  • Cloud sync

How to Declare in manifest.json

Add the "identity" permission to your extension manifest:

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

Related Permissions