aboutsummaryrefslogtreecommitdiff
path: root/extension/manifest.json
diff options
context:
space:
mode:
authortg(x) <*@tg-x.net>2015-12-04 22:47:44 +0100
committertg(x) <*@tg-x.net>2015-12-04 22:47:44 +0100
commit1089b40b1c03fa69c0e73dd43e4281aa96388171 (patch)
tree0cdffcbad05041659dc826db9f5dbf1f47de47e1 /extension/manifest.json
parent5243a707260af9de820ad02b1972d3280164cf19 (diff)
downloadwallet-core-1089b40b1c03fa69c0e73dd43e4281aa96388171.tar.xz
DB structure, emscripten interface
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json16
1 files changed, 9 insertions, 7 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
index 1d0ad6d55..b253c2484 100644
--- a/extension/manifest.json
+++ b/extension/manifest.json
@@ -21,11 +21,6 @@
"default_popup": "popup/wallet.html"
},
- "web_accessible_resources": [
- "popup/reserves.html",
- "popup/wallet.html"
- ],
-
"content_scripts": [
{
"matches": ["*://*/*"],
@@ -35,7 +30,14 @@
],
"background": {
- "scripts": ["background/wallet.js"]
- }
+ "scripts": [
+ "lib/util.js",
+ "background/libwrapper.js",
+ "background/emscriptif.js",
+ "background/db.js",
+ "background/wallet.js"
+ ]
+ },
+ "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}