System Storage Info

system.storage
Low RiskCategory: System & PerformanceView Official Docs

Install Warning

"Identify and eject storage devices."

Technical Context

Grants access to the chrome.system.storage API to query information about attached storage devices including capacity and available space. It can also detect when storage devices are added or removed.

What This Means For You

The extension can see information about your hard drives and USB drives, like how much space is available. This is useful for download managers or backup tools.

Related APIs

This permission enables access to these Chrome APIs:

chrome.system.storage

Common Use Cases

  • Download managers
  • Backup tools
  • Storage monitors

How to Declare in manifest.json

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

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

What Users Will See

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

This extension can:

"Identify and eject storage devices."

Related Permissions