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-08-23 16:53:05 -07:00

70 lines
1.3 KiB
JSON

{
"name": "MetaMask",
"short_name": "Metamask",
"version": "2.9.0",
"manifest_version": 2,
"description": "Ethereum Browser Extension",
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+M",
"mac": "Command+M",
"chromeos": "Ctrl+M",
"linux": "Ctrl+M"
}
}
},
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"applications": {
"gecko": {
"id": "webextension@metamask.io"
}
},
"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": [
"file://*/*",
"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/*"
]
}
}