From 367d1672c51dd72af89edfa2d82a6cab8e726818 Mon Sep 17 00:00:00 2001 From: mcpower Date: Sun, 17 May 2020 05:51:50 +1000 Subject: [PATCH] Add unlimitedStorage permission (#930) 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", ""