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",
"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",

View File

@@ -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": {

View File

@@ -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": ["<all_urls>"],
"js": ["gooti-content-script.js"],
"matches": [
"<all_urls>"
],
"js": [
"gooti-content-script.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": ["gooti-extension.js"],
"matches": ["<all_urls>"]
"resources": [
"gooti-extension.js"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {