Unlimited Storage

unlimitedStorage
Low RiskCategory: System & PerformanceView Official Docs

Technical Context

Removes the default 5MB quota on chrome.storage.local, allowing the extension to store larger amounts of data. This is necessary for extensions that cache significant content like images, offline data, or large datasets.

What This Means For You

The extension can save more data on your computer than the usual limit allows. This is useful for tools that need to work offline or save lots of information locally.

Related APIs

This permission enables access to these Chrome APIs:

chrome.storage.local

Common Use Cases

  • Offline readers
  • Media downloaders
  • Data backup tools

How to Declare in manifest.json

Add the "unlimitedStorage" permission to your extension manifest:

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

Related Permissions