You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
69 lines
1.3 KiB
{
|
|
"name": "MetaMask",
|
|
"short_name": "Metamask",
|
|
"version": "2.9.0",
|
|
"manifest_version": 2,
|
|
"description": "Ethereum Browser Extension",
|
|
"commands": {
|
|
"_execute_browser_action": {
|
|
"suggested_key": {
|
|
"windows": "Alt+M",
|
|
"mac": "Alt+M",
|
|
"chromeos": "Alt+M",
|
|
"linux": "Alt+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/*"
|
|
]
|
|
}
|
|
}
|
|
|