From 217cef9cda541d00490e5926365aaad2146cdb02 Mon Sep 17 00:00:00 2001 From: Dawid Urbas Date: Mon, 18 Dec 2023 12:19:56 +0000 Subject: [PATCH] Fix manifest --- static/manifest.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/static/manifest.json b/static/manifest.json index 3199b46..81438af 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1,7 +1,7 @@ { "name": "Holo key manager", "description": "A browser extension to manage holo keys", - "version": "0.0.31", + "version": "0.0.32", "manifest_version": 3, "action": { "default_title": "Holo key manager", @@ -12,15 +12,10 @@ "extension_pages": "default-src 'self' 'wasm-unsafe-eval'" }, "background": { - "scripts": ["background.js"] + "service_worker": "scripts/background.js" }, "permissions": ["activeTab", "storage", "tabs", "nativeMessaging"], "externally_connectable": { "matches": ["*://localhost/*"] - }, - "browser_specific_settings": { - "gecko": { - "id": "holo-key-manager@holo.host" - } } }