From bd8bd101d7c4637c635a36950f76880b28745bc9 Mon Sep 17 00:00:00 2001 From: DEV Sam Hayes Date: Fri, 7 Feb 2025 23:15:16 +0100 Subject: [PATCH] prepare firefox-0.0.3 --- package-lock.json | 4 ++-- package.json | 4 ++-- projects/firefox/public/manifest.json | 26 +++++++++++++++++++------- 3 files changed, 23 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7f182f7..fa3d101 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "gooti-extension", - "version": "0.0.2", + "version": "0.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "gooti-extension", - "version": "0.0.2", + "version": "0.0.3", "dependencies": { "@angular/animations": "^19.0.0", "@angular/common": "^19.0.0", diff --git a/package.json b/package.json index 6ec04e1..dec0b75 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "gooti-extension", - "version": "0.0.2", + "version": "0.0.3", "custom": { "chrome": { "version": "0.0.2" }, "firefox": { - "version": "0.0.1" + "version": "0.0.3" } }, "scripts": { diff --git a/projects/firefox/public/manifest.json b/projects/firefox/public/manifest.json index e5d2098..97b8bb3 100644 --- a/projects/firefox/public/manifest.json +++ b/projects/firefox/public/manifest.json @@ -2,29 +2,41 @@ "manifest_version": 3, "name": "Gooti", "description": "Nostr Identity Manager & Signer", - "version": "0.0.1", + "version": "0.0.3", "homepage_url": "https://getgooti.com", "options_page": "options.html", - "permissions": ["storage"], + "permissions": [ + "storage" + ], "action": { "default_popup": "index.html", "default_icon": "gooti-with-bg.png" }, "background": { - "scripts": ["background.js"] + "scripts": [ + "background.js" + ] }, "content_scripts": [ { "run_at": "document_start", - "matches": [""], - "js": ["gooti-content-script.js"], + "matches": [ + "" + ], + "js": [ + "gooti-content-script.js" + ], "all_frames": true } ], "web_accessible_resources": [ { - "resources": ["gooti-extension.js"], - "matches": [""] + "resources": [ + "gooti-extension.js" + ], + "matches": [ + "" + ] } ], "browser_specific_settings": {