aboutsummaryrefslogtreecommitdiffstats
path: root/extension/manifest.json
diff options
context:
space:
mode:
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
},