Storage

storage
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Enables access to the chrome.storage API, providing a sandboxed environment for saving and retrieving extension-specific data. It supports both local storage and cloud synchronization across different browser instances signed into the same profile.

What This Means For You

This acts as a digital filing cabinet where the extension saves your personal settings and preferences. It ensures your custom configurations stay the same every time you open Chrome without slowing down your computer.

Related APIs

This permission enables access to these Chrome APIs:

chrome.storage.localchrome.storage.syncchrome.storage.session

Common Use Cases

  • Any extension needing settings persistence

How to Declare in manifest.json

Add the "storage" permission to your extension manifest:

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

Related Permissions