signal-desktop/manifest.json

32 lines
786 B
JSON
Raw Normal View History

2014-01-10 07:48:05 +00:00
{
2015-01-06 22:52:15 +00:00
"manifest_version": 2,
2014-01-10 07:48:05 +00:00
2015-05-07 02:35:11 +00:00
"name": "Signal",
"description": "Private Messenger",
2015-01-06 22:52:15 +00:00
"version": "0.0.1",
"offline_enabled": false,
2014-01-10 07:48:05 +00:00
2015-02-04 09:44:28 +00:00
"permissions": [
"unlimitedStorage"
],
2015-03-19 23:42:35 +00:00
"icons": { "128": "images/icon.png" },
2014-01-10 07:48:05 +00:00
2015-01-06 22:52:15 +00:00
"browser_action": {
"default_icon": {
2015-03-19 23:42:35 +00:00
"19": "images/icon.png"
2015-01-06 22:52:15 +00:00
},
2015-05-07 02:35:11 +00:00
"default_title": "Signal"
2015-01-06 22:52:15 +00:00
},
2014-01-10 07:48:05 +00:00
2015-01-06 22:52:15 +00:00
"background": {
"page": "background.html"
},
2014-01-10 07:48:05 +00:00
2015-01-06 22:52:15 +00:00
"options_page": "options.html",
"content_security_policy":
"default-src 'self'; img-src 'self' data:; connect-src https://textsecure-service-staging.whispersystems.org wss://textsecure-service-staging.whispersystems.org https://whispersystems-textsecure-attachments-staging.s3.amazonaws.com; style-src 'self' 'unsafe-inline'"
2014-01-10 07:48:05 +00:00
}