Ernesto Schiavo
Ernesto Schiavo

Reputation: 1060

Chrome storage API quota

I read that there is a quota limit while using chrome.storage.sync API:

QUOTA_BYTES: 102,400
The maximum total amount (in bytes) of data that can be stored in sync storage, as measured by the JSON stringification of every value plus every key's length. Updates that would cause this limit to be exceeded fail immediately and set runtime.lastError

The question is: will every user have 102400 bytes or is the quota limit global to all users?

Upvotes: 1

Views: 101

Answers (1)

Ernesto Schiavo
Ernesto Schiavo

Reputation: 1060

Just for future reference: the quota is per user.

Upvotes: 2

Related Questions