signal-desktop/manifest.json
Scott Nonnenberg 6190ad794a
v0.43.0
Note: This version requires a new 'directory' permission

Feature: Migration to Electron (currently behind a flag)
  - Warning banner that this version is deprecated
  - Export of all database contents to disk
  - This exported data can be used to initialize the Electron version
    of the app
  - Note: after export, this Chrome instance will not be useable since
    the Electron export-initialized instance will be an exact copy.
    _There can only be one_ client with the same identity!
  - See original pull request for flags to enable or reset:
    https://github.com/WhisperSystems/Signal-Desktop/pull/1342

We now log 'clearAttention' less, since we call it every two seconds

String updates for es, fi, it, ja, pt_PT, ru and sv

FREEBIE
2017-08-28 14:22:26 -07:00

41 lines
833 B
JSON

{
"manifest_version": 2,
"name": "Signal Private Messenger",
"short_name": "Signal",
"description": "__MSG_installTagline__",
"version": "0.43.0",
"offline_enabled": false,
"minimum_chrome_version": "37",
"default_locale": "en",
"permissions": [
"unlimitedStorage",
"notifications",
{"fileSystem": ["write", "directory"]},
"alarms",
"fullscreen",
"audioCapture"
],
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"48": "images/icon_48.png",
"128": "images/icon_128.png",
"256": "images/icon_256.png"
},
"app": {
"background": {
"page": "background.html"
}
},
"commands": {
"show_signal": {
"description": "Show the Signal inbox."
}
}
}