Add unlimitedStorage permission

IndexedDB storage may be evicted by the browser at its discretion [1].
Granting the unlimitedStorage permission ensures that IndexedDB data
will not be evicted [2], and allows the extension to store more than
5MB of data if needed [3].

[1]: https://web.dev/storage-for-the-web/#eviction
[2]: https://crbug.com/680392#c5
[3]: https://developer.chrome.com/apps/declare_permissions#unlimitedStorage
This commit is contained in:
mcpower 2020-05-16 17:24:02 +10:00 committed by Michael
parent 7ab0651e4d
commit 696a049b08

View File

@ -18,6 +18,7 @@
"webRequestBlocking",
"contextMenus",
"storage",
"unlimitedStorage",
"alarms",
"identity",
"<all_urls>"