diff options
author | MikeCheng1208 <a3804430@hotmail.com> | 2018-05-04 19:57:19 +0800 |
---|---|---|
committer | Yung chieh Tsai <x01ep23i@hotmail.com> | 2018-05-29 12:38:25 +0800 |
commit | 695b157e7b511a94a18ada1578ece2e4e838f869 (patch) | |
tree | 1a79d3e776330d82f53f8f903e06b90c28ba104e /app/manifest.json | |
parent | 8e672a82e2ba7838370a5332c4775a8399c961b9 (diff) | |
download | tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.gz tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.bz2 tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.lz tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.xz tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.tar.zst tangerine-wallet-browser-695b157e7b511a94a18ada1578ece2e4e838f869.zip |
Intergrate ENS with IPFS
Diffstat (limited to 'app/manifest.json')
-rw-r--r-- | app/manifest.json | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/app/manifest.json b/app/manifest.json index 3e5eed205..0f5a2566f 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_appName__", "short_name": "__MSG_appName__", - "version": "4.6.0", + "version": "4.6.2", "manifest_version": 2, "author": "https://metamask.io", "description": "__MSG_appDescription__", @@ -59,14 +59,19 @@ "unlimitedStorage", "clipboardWrite", "http://localhost:8545/", - "https://*.infura.io/" + "https://*.infura.io/", + "activeTab", + "webRequest", + "*://*.eth/" ], "web_accessible_resources": [ - "inpage.js" + "inpage.js", + "*" ], "externally_connectable": { "matches": [ "https://metamask.io/*" ] - } -}
\ No newline at end of file + }, + "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" +} |