diff options
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'" +} |