summaryrefslogtreecommitdiff
path: root/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 00000000..15cbd330
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,16 @@
+{
+ "manifest_version": 2,
+ "name": "Yomichan",
+ "description": "Yomichan Extension",
+ "version": "0.0.1",
+
+ "browser_action": {
+ "default_icon": "icon.png"
+ },
+
+ "content_scripts": [{
+ "matches": [ "http://*/*", "https://*/*" ],
+ "js": [ "content.js" ],
+ "run_at": "document_end"
+ }]
+}