1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/app/manifest.json
2016-03-22 10:38:56 -07:00

53 lines
1011 B
JSON

{
"name": "__MSG_appName__",
"version": "0.14.0",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/chromereload.js",
"scripts/background.js"
]
},
"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "MetaMask",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": [
"notifications",
"storage",
"tabs",
"http://localhost:8545/"
],
"web_accessible_resources": [
"scripts/inpage.js"
],
"externally_connectable": {
"matches": [
"https://metamask.io/*"
]
}
}