mail/src/manifest.json

22 lines
646 B
JSON

{
"name": "Whiteout Mail",
"description": "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,
"icons": {
"128": "css/images/key-128.png"
},
"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'"
}
}