A Metamask fork with Infura removed and default networks editable
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.
ciphermask/app/manifest.json

70 lines
1.3 KiB

9 years ago
{
"name": "MetaMask",
"short_name": "Metamask",
8 years ago
"version": "2.9.0",
9 years ago
"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"
}
}
},
9 years ago
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"applications": {
"gecko": {
"id": "webextension@metamask.io"
}
},
9 years ago
"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"
9 years ago
},
"content_scripts": [
{
"matches": [
"file://*/*",
9 years ago
"http://*/*",
"https://*/*"
],
"js": [
"scripts/contentscript.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"permissions": [
"notifications",
"storage",
"tabs",
"http://localhost:8545/"
],
9 years ago
"web_accessible_resources": [
"scripts/inpage.js"
],
"externally_connectable": {
"matches": [
"https://metamask.io/*"
]
}
}