System Memory Info

system.memory
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Provides read-only access to the chrome.system.memory API for querying total and available system memory. This allows extensions to adapt their memory usage based on system constraints.

What This Means For You

The extension can see how much RAM your computer has and how much is available. This helps it avoid using too much memory when your system is under load.

Related APIs

This permission enables access to these Chrome APIs:

chrome.system.memory

Common Use Cases

  • System monitors
  • Tab suspenders

How to Declare in manifest.json

Add the "system.memory" permission to your extension manifest:

{
  "manifest_version": 3,
  "name": "My Extension",
  "permissions": [
    "system.memory"
  ]
}

Related Permissions