Reputation: 1060
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