1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 11:28:51 +01:00
metamask-extension/app/manifest.json

49 lines
949 B
JSON
Raw Normal View History

2015-08-01 03:38:02 +02:00
{
"name": "__MSG_appName__",
2015-08-02 01:33:31 +02:00
"version": "0.0.49",
2015-08-01 03:38:02 +02:00
"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"
},
2015-08-02 01:33:31 +02:00
"default_title": "metamask"
2015-08-01 03:38:02 +02:00
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
],
2015-08-02 01:33:31 +02:00
"permissions": [
"storage"
],
2015-08-01 03:38:02 +02:00
"web_accessible_resources": [
"scripts/inpage.js"
],
"externally_connectable": {
"matches": [
"https://metamask.io/*",
"https://alpha.metamask.io/*"
]
}
2015-08-01 08:05:04 +02:00
}