added manifest.json for chrome extension

This commit is contained in:
Mario Colque 2014-05-14 11:25:00 -03:00
parent eedfdcfaa1
commit b9893f7b4a
1 changed files with 19 additions and 0 deletions

19
manifest.json Normal file
View File

@ -0,0 +1,19 @@
{
"manifest_version": 2,
"name": "Copay",
"description": "A multisignature bitcoin wallet",
"version": "0.0.1",
"homepage_url": "http://bitpay.github.io/copay",
"browser_action": {
"default_title": "Copay",
"default_icon": "img/icons/icon.png",
"default_popup": "popup.html"
},
"permissions": [
"tabs", "storage"
],
"options_page": "index.html#/settings",
"icons": {
"128": "img/icons/icon.png"
}
}