Runtime

runtime
Low RiskCategory: CommunicationView Official Docs

Technical Context

Provides access to the chrome.runtime API for extension lifecycle management, message passing between extension components, and communication with other extensions.

What This Means For You

This allows different parts of the extension to communicate with each other. It also enables the extension to respond when Chrome starts or when you click its icon.

Related APIs

This permission enables access to these Chrome APIs:

chrome.runtime

Common Use Cases

  • All extensions use this for internal communication

How to Declare in manifest.json

Add the "runtime" permission to your extension manifest:

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

Related Permissions