signal-desktop/manifest.json
lilia 87b0574973 Update name/description in app manifest
These strings are displayed in the webstore. Slightly more descriptive
copy is desireable here.

// FREEBIE
2015-11-29 18:03:51 -08:00

30 lines
614 B
JSON

{
"manifest_version": 2,
"name": "Signal Private Messenger",
"short_name": "Signal",
"description": "Privacy is possible. Signal makes it easy.",
"version": "0.1.0",
"offline_enabled": false,
"minimum_chrome_version": "37",
"permissions": [
"unlimitedStorage",
"notifications",
"fileSystem",
"alarms"
],
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png"
},
"app": {
"background": {
"page": "background.html"
}
}
}