ghost-extension-wallet/assets/manifest-v3-firefox.json
2025-08-20 15:23:54 +03:00

50 lines
1.5 KiB
JSON

{
"author": "GHOST Team <someone@ghostchain.io>",
"description": "Wallet for GHOST and CASPER blockchains light clients",
"homepage_url": "https://git.ghostchain.io/ghostchain/ghost-extension-wallet",
"name": "GHOST Wallet",
"short_name": "ghost-wallet",
"version": "0.0.1",
"manifest_version": 3,
"permissions": ["notifications", "storage", "tabs", "alarms"],
"background": {
"scripts": ["background/background.js"],
"type": "module"
},
"action": {
"default_title": "GHOST Wallet",
"default_popup": "ui/assets/wallet-popup.html"
},
"options_ui": {
"page": "ui/assets/options.html",
"open_in_tab": true
},
"content_scripts": [
{
"js": ["content/content.js"],
"matches": ["http://*/*", "https://*/*"],
"run_at": "document_start"
}
],
"icons": {
"16": "./icons/icon-16.png",
"32": "./icons/icon-32.png",
"48": "./icons/icon-48.png",
"128": "./icons/icon-128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"browser_specific_settings": {
"gecko": {
"id": "{14b458b2-3221-4800-a36f-ae1ad1756ae2}"
}
},
"web_accessible_resources": [
{
"resources": ["inpage/inpage.js"],
"matches": ["http://*/*", "https://*/*"]
}
]
}