5d3a2a4cc8
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.
26 lines
457 B
JSON
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"
|
|
}
|
|
}
|
|
}
|