ced295a630
Getting up and running with IndexedDB was pretty easy, thanks to backbone. The tricky part was making reads and writes asynchronous. In that process I did some refactoring on Whisper.Threads, which has been renamed Conversations for consistency with the view names. This change also adds the unlimitedStorage permission.
32 lines
804 B
JSON
32 lines
804 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_popup": "index.html"
|
|
},
|
|
|
|
"background": {
|
|
// "scripts": [ "js-deps/jquery.js", "js-deps/jquery.atmosphere.js", "js-deps/aes.js", "js-deps/hmac-sha256.js", "js-deps/lib-typedarrays.js",
|
|
// "js-deps/Long.min.js", "js-deps/ByteBuffer.min.js", "js-deps/ProtoBuf.min.js", "js/helpers.js", "js/background.js" ]
|
|
"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'"
|
|
}
|