Identity Email

identity.email
Medium RiskCategory: CommunicationView Official Docs

Install Warning

"Know your email address."

Technical Context

Extends the identity permission to allow the extension to retrieve the user's Google account email address. This is used for personalization or account identification purposes.

What This Means For You

The extension can see your Google account email address. This is used for account identification but reveals your primary email to the extension.

Related APIs

This permission enables access to these Chrome APIs:

chrome.identity

Common Use Cases

  • Personalized services
  • Account management
  • User identification

How to Declare in manifest.json

Add the "identity.email" permission to your extension manifest:

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

What Users Will See

When users install your extension, Chrome will display this warning:

This extension can:

"Know your email address."

Related Permissions