I think HTML5 local storage can store a maximum of 5MB per domain. Can a Google Chrome extension specify a domain for an increase in storage?
Asked
Active
Viewed 4,339 times
4
-
See http://stackoverflow.com/a/6281947/632951 – Pacerier Jun 23 '15 at 02:51
1 Answers
3
You can only request unlimited space for extension's storage in the manifest, storages that belong to other domains cannot be changed:
"permissions": [
"unlimitedStorage"
],

serg
- 109,619
- 77
- 317
- 330
-
5Afaik the unlimitedStorage permission doesn't apply to localStorage, only websql and app cache. Google devs say that localStorage doesn't scale well enough to make it work - http://code.google.com/p/chromium/issues/detail?id=58985 – Drew Shafer Aug 24 '12 at 23:19