From 470bc92da56bccbd6958f6e63442bf127ee609ab Mon Sep 17 00:00:00 2001 From: tophf Date: Thu, 13 Apr 2017 12:59:55 +0300 Subject: [PATCH] Add in permissions We already have full access to all sites via our content script so this permission doesn't add anything new but we need it to be able to establish page connection via tabs.executeScript when the extension is installed, reloaded, re-enabled. also allows file:// URLs unlike *://*/* used previously. Of course it requires the corresponding checkbox being enabled on chrome://extensions page. --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index d8d14f28..22425c24 100644 --- a/manifest.json +++ b/manifest.json @@ -15,7 +15,8 @@ "tabs", "webNavigation", "contextMenus", - "storage" + "storage", + "" ], "background": { "scripts": ["messaging.js", "storage.js", "prefs.js", "background.js", "update.js"]