Skip to content

Commit

Permalink
Added 'unlimitedStorage' permission
Browse files Browse the repository at this point in the history
- This is required for creating persistent IndexedDB database without asking user at creation time
- Available in Firefox 56 and newer; see https://developer.mozilla.org/en-US/Add-ons/WebExtensions/manifest.json/permissions#Unlimited_storage
  • Loading branch information
AE Creations committed Sep 17, 2017
1 parent ec0f2e3 commit 391bedc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion wx-src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
"48": "img/clippings-wx.png"
},

"permissions": ["contextMenus", "storage", "history", "tabs"],
"permissions": [
"contextMenus",
"storage",
"history",
"tabs",
"unlimitedStorage"
],

"background": {
"scripts": [
Expand Down

0 comments on commit 391bedc

Please sign in to comment.