Background

background
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Allows the extension to start early during Chrome startup and continue running until Chrome shuts down, even without any visible windows. This enables persistent background processing for the extension.

What This Means For You

The extension can run in the background from when Chrome starts until it closes. This allows it to always be ready but means it uses system resources continuously.

Related APIs

This permission enables access to these Chrome APIs:

chrome.runtime

Common Use Cases

  • Always-on services
  • Notification watchers
  • Sync tools

How to Declare in manifest.json

Add the "background" permission to your extension manifest:

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

Related Permissions