From 696a049b08117c41ad74bdc851b897f29f7d493b Mon Sep 17 00:00:00 2001 From: mcpower Date: Sat, 16 May 2020 17:24:02 +1000 Subject: [PATCH] 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 --- manifest.json | 1 + 1 file changed, 1 insertion(+) diff --git a/manifest.json b/manifest.json index c0d2e390..7d8114c7 100644 --- a/manifest.json +++ b/manifest.json @@ -18,6 +18,7 @@ "webRequestBlocking", "contextMenus", "storage", + "unlimitedStorage", "alarms", "identity", ""