mail/src/manifest.json

19 lines
616 B
JSON
Raw Normal View History

{
"name": "Whiteout Mail",
2013-06-04 17:38:05 -04:00
"description": "A fully offline enabled mail app with end-2-end encrypted messaging and client-side encrypted sync to the cloud. Your data belongs only to you.",
"version": "0.0.1",
"manifest_version": 2,
"offline_enabled": true,
"permissions": [
"http://storage.whiteout.io/"
],
"app": {
"background": {
"scripts": ["background.js"]
}
},
"sandbox": {
"pages": ["sandbox.html"],
"content_security_policy": "sandbox allow-scripts; default-src 'self'; object-src 'none'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'"
}
}