wallet-core/extension/manifest.json

42 lines
722 B
JSON
Raw Normal View History

2015-11-25 20:41:31 +01:00
{
"description": "Privacy preserving and transparent payments",
"manifest_version": 2,
"name": "Taler Wallet",
2015-12-03 20:07:03 +01:00
"version": "0.1",
2015-11-25 20:41:31 +01:00
"applications": {
"gecko": {
"id": "devs@taler.net"
}
},
"permissions": [
"http://*/*",
"https://*/*"
2015-12-03 20:07:03 +01:00
],
2015-11-25 20:41:31 +01:00
"browser_action": {
"default_icon": "icons/taler-logo-24.png",
"default_title": "Taler",
"default_popup": "popup/wallet.html"
},
2015-12-03 20:07:03 +01:00
2015-11-25 20:41:31 +01:00
"web_accessible_resources": [
"popup/reserves.html",
"popup/wallet.html"
],
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content_scripts/notify.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background/wallet.js"]
}
}