Extension Management

management
High RiskCategory: System & PerformanceView Official Docs

Install Warning

"Manage your apps, extensions, and themes."

Technical Context

Grants access to the chrome.management API for querying, enabling, disabling, and uninstalling other extensions. This enables extension managers and security tools to audit installed extensions.

What This Means For You

The extension can see all your other extensions and apps, and can enable, disable, or remove them. This is powerful and should only be trusted to extension managers.

Related APIs

This permission enables access to these Chrome APIs:

chrome.management

Common Use Cases

  • Extension managers
  • Security auditors
  • Profile managers

How to Declare in manifest.json

Add the "management" permission to your extension manifest:

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

What Users Will See

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

This extension can:

"Manage your apps, extensions, and themes."

Related Permissions