Is there any way a Google Chrome extension can inc

2019-02-24 19:17发布

问题:

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)