From 9215fefff7e4992d2260c732687c5a8a47d3a3e0 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Thu, 16 Nov 2023 15:27:00 -0500 Subject: [PATCH] add needed permission to access any remote https host --- public/manifest.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/manifest.json b/public/manifest.json index a68a78b..929dc12 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -9,7 +9,11 @@ "background": { "service_worker": "background/index.js" }, - "permissions": ["activeTab", "storage"], + "permissions": [ + "activeTab", + "storage", + "https://*/*" + ], "icons": { "16": "icons/icon.png", "48": "icons/icon.png",