From 44d5a7ed3c8435aab7851bb8382ec5210de358d7 Mon Sep 17 00:00:00 2001 From: Omar Rizwan Date: Fri, 23 Oct 2020 12:00:25 -0700 Subject: Switch to browser namespace so we can use Promises. --- extension/manifest.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'extension/manifest.json') 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 }, -- cgit v1.2.3