aboutsummaryrefslogtreecommitdiffstats
path: root/app/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'app/manifest.json')
-rw-r--r--app/manifest.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/manifest.json b/app/manifest.json
new file mode 100644
index 000000000..f053ef594
--- /dev/null
+++ b/app/manifest.json
@@ -0,0 +1,41 @@
+{
+ "name": "__MSG_appName__",
+ "version": "0.0.1",
+ "manifest_version": 2,
+ "description": "__MSG_appDescription__",
+ "icons": {
+ "16": "images/icon-16.png",
+ "128": "images/icon-128.png"
+ },
+ "default_locale": "en",
+ "background": {
+ "scripts": [
+ "scripts/chromereload.js",
+ "scripts/background.js"
+ ]
+ },
+ "browser_action": {
+ "default_icon": {
+ "19": "images/icon-19.png",
+ "38": "images/icon-38.png"
+ },
+ "default_title": "metamask",
+ "default_popup": "popup.html"
+ },
+ "content_scripts": [
+ {
+ "matches": [
+ "http://*/*",
+ "https://*/*"
+ ],
+ "js": [
+ "scripts/contentscript.js"
+ ],
+ "run_at": "document_start",
+ "all_frames": false
+ }
+ ],
+ "web_accessible_resources": [
+ "scripts/web3.js"
+ ]
+}