prepare firefox-0.0.3

This commit is contained in:
DEV Sam Hayes
2025-02-07 23:15:16 +01:00
parent e85ac5ca66
commit bd8bd101d7
3 changed files with 23 additions and 11 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "gooti-extension", "name": "gooti-extension",
"version": "0.0.2", "version": "0.0.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "gooti-extension", "name": "gooti-extension",
"version": "0.0.2", "version": "0.0.3",
"dependencies": { "dependencies": {
"@angular/animations": "^19.0.0", "@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0", "@angular/common": "^19.0.0",

View File

@@ -1,12 +1,12 @@
{ {
"name": "gooti-extension", "name": "gooti-extension",
"version": "0.0.2", "version": "0.0.3",
"custom": { "custom": {
"chrome": { "chrome": {
"version": "0.0.2" "version": "0.0.2"
}, },
"firefox": { "firefox": {
"version": "0.0.1" "version": "0.0.3"
} }
}, },
"scripts": { "scripts": {

View File

@@ -2,29 +2,41 @@
"manifest_version": 3, "manifest_version": 3,
"name": "Gooti", "name": "Gooti",
"description": "Nostr Identity Manager & Signer", "description": "Nostr Identity Manager & Signer",
"version": "0.0.1", "version": "0.0.3",
"homepage_url": "https://getgooti.com", "homepage_url": "https://getgooti.com",
"options_page": "options.html", "options_page": "options.html",
"permissions": ["storage"], "permissions": [
"storage"
],
"action": { "action": {
"default_popup": "index.html", "default_popup": "index.html",
"default_icon": "gooti-with-bg.png" "default_icon": "gooti-with-bg.png"
}, },
"background": { "background": {
"scripts": ["background.js"] "scripts": [
"background.js"
]
}, },
"content_scripts": [ "content_scripts": [
{ {
"run_at": "document_start", "run_at": "document_start",
"matches": ["<all_urls>"], "matches": [
"js": ["gooti-content-script.js"], "<all_urls>"
],
"js": [
"gooti-content-script.js"
],
"all_frames": true "all_frames": true
} }
], ],
"web_accessible_resources": [ "web_accessible_resources": [
{ {
"resources": ["gooti-extension.js"], "resources": [
"matches": ["<all_urls>"] "gooti-extension.js"
],
"matches": [
"<all_urls>"
]
} }
], ],
"browser_specific_settings": { "browser_specific_settings": {