copay/app-template/manifest.json

22 lines
362 B
JSON
Raw Normal View History

2016-08-19 13:47:37 -07:00
{
"manifest_version": 2,
"name": "*PACKAGENAME*",
2016-12-28 11:49:42 -08:00
"description": "*DESCRIPTION*",
2016-08-19 13:47:37 -07:00
"version": "*VERSION*",
"permissions": [
"storage",
"unlimitedStorage",
"notifications",
"videoCapture",
"webview"
],
"app": {
"background": {
"scripts": ["initial.js"]
}
},
"icons": {
"128": "img/icon-chrome-128.png"
}
}