signal-desktop/manifest.json
lilia 5d3a2a4cc8 Fix file inputs
As a chrome app we are obligated to use the fileSystem api, and must do
so via the window in which we want to open the dialog.
2015-05-21 18:19:10 -07:00

26 lines
457 B
JSON

{
"manifest_version": 2,
"name": "Signal",
"description": "Private Messenger",
"version": "0.0.1",
"offline_enabled": false,
"permissions": [
"unlimitedStorage",
"notifications",
"fileSystem"
],
"icons": {
"16": "images/icon_16.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"app": {
"background": {
"page": "background.html"
}
}
}