Processes

processes
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Grants access to the chrome.processes API to monitor browser process information including CPU and memory usage per tab and extension. This enables detailed performance analysis of Chrome itself.

What This Means For You

The extension can see which tabs and extensions are using the most memory and CPU. This helps identify what might be slowing down your browser.

Related APIs

This permission enables access to these Chrome APIs:

chrome.processes

Common Use Cases

  • Task managers
  • Performance monitors

How to Declare in manifest.json

Add the "processes" permission to your extension manifest:

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

Related Permissions