session-desktop/manifest.json
lilia 31e7d285e3 Popout inbox
Rather than opening the inbox in its own window, let it appear as a
browser action popup by default, but allow promotion to its own window
if requested.
2015-03-18 16:29:01 -07:00

32 lines
653 B
JSON

{
"manifest_version": 2,
"name": "TextSecure",
"description": "Secure texting ",
"version": "0.0.1",
"offline_enabled": false,
"permissions": [
"unlimitedStorage"
],
"icons": { "128": "icon.png" },
"browser_action": {
"default_icon": {
"19": "icon.png"
},
"default_title": "TextSecure",
"default_popup": "index.html"
},
"background": {
"page": "background.html"
},
"options_page": "options.html",
// XXX: FOR TESTING ONLY, REMOVE BEFORE RELEASE:
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}