summaryrefslogtreecommitdiff
path: root/extension/manifest.json
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2016-03-20 11:01:05 -0700
committerAlex Yatskov <alex@foosoft.net>2016-03-20 11:01:05 -0700
commit5c6ab2157b5562a686aef5497fd2cd70c30a63ae (patch)
tree4bf0ca27eab8bf1ecc63665f49394afecc283840 /extension/manifest.json
parent84fec940dbe819d2c0603bbda68fc4dec6ab2c0e (diff)
Reorganizing files
Diffstat (limited to 'extension/manifest.json')
-rw-r--r--extension/manifest.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/extension/manifest.json b/extension/manifest.json
new file mode 100644
index 00000000..1cd15a9d
--- /dev/null
+++ b/extension/manifest.json
@@ -0,0 +1,18 @@
+{
+ "manifest_version": 2,
+ "name": "Yomichan",
+ "description": "Yomichan Extension",
+ "version": "0.0.1",
+
+ "browser_action": {
+ "default_icon": "icon.png"
+ },
+
+ "background": { "page": "background.html" },
+
+ "content_scripts": [{
+ "matches": [ "http://*/*", "https://*/*" ],
+ "js": [ "content.js" ],
+ "run_at": "document_end"
+ }]
+}