mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
42 lines
819 B
JSON
42 lines
819 B
JSON
|
{
|
||
|
"name": "__MSG_appName__",
|
||
|
"version": "0.0.1",
|
||
|
"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
|
||
|
}
|
||
|
],
|
||
|
"web_accessible_resources": [
|
||
|
"scripts/web3.js"
|
||
|
]
|
||
|
}
|