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

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