s/\t/ /g in manifest.json
This commit is contained in:
parent
d9db0f53e7
commit
9a30a1e175
1 changed files with 18 additions and 20 deletions
|
@ -1,32 +1,30 @@
|
||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
|
||||||
"name": "TextSecure",
|
"name": "TextSecure",
|
||||||
"description": "Secure texting ",
|
"description": "Secure texting ",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"offline_enabled": false,
|
"offline_enabled": false,
|
||||||
|
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"unlimitedStorage"
|
"unlimitedStorage"
|
||||||
],
|
],
|
||||||
|
|
||||||
"icons": { "128": "icon.png" },
|
"icons": { "128": "icon.png" },
|
||||||
|
|
||||||
"browser_action": {
|
"browser_action": {
|
||||||
"default_icon": {
|
"default_icon": {
|
||||||
"19": "icon.png"
|
"19": "icon.png"
|
||||||
},
|
},
|
||||||
"default_popup": "index.html"
|
"default_popup": "index.html"
|
||||||
},
|
},
|
||||||
|
|
||||||
"background": {
|
"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",
|
"page": "background.html"
|
||||||
// "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",
|
"options_page": "options.html",
|
||||||
|
|
||||||
// XXX: FOR TESTING ONLY, REMOVE BEFORE RELEASE:
|
// XXX: FOR TESTING ONLY, REMOVE BEFORE RELEASE:
|
||||||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue