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?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You can only request unlimited space for extension's storage in the manifest, storages that belong to other domains cannot be changed:
"permissions": [
"unlimitedStorage"
],
(more info)