aboutsummaryrefslogtreecommitdiffstats
path: root/extension/manifest.json
diff options
context:
space:
mode:
authorOmar Rizwan <omar.rizwan@gmail.com>2020-10-23 12:00:25 -0700
committerOmar Rizwan <omar.rizwan@gmail.com>2020-10-23 12:00:25 -0700
commit44d5a7ed3c8435aab7851bb8382ec5210de358d7 (patch)
tree90544a8bc0c0a10669eef952fcc7422e91122fcc /extension/manifest.json
parent543dc7d4b2a5bc2c3166b512678f9bdd9a86beda (diff)
Switch to browser namespace so we can use Promises.
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
index f99567b..449df14 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -5,12 +5,16 @@
"description": "Connects to TabFS filesystem",
"version": "1.0",
- "permissions": ["tabs", "debugger", "nativeMessaging", "unlimitedStorage"],
+ "permissions": [
+ "tabs", "debugger", "nativeMessaging",
+ "unlimitedStorage",
+ "*://*/*"
+ ],
"browser_action": {},
"background": {
- "scripts": ["background.js"],
+ "scripts": ["vendor/browser-polyfill.js", "background.js"],
"persistent": true
},