diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-03-16 20:33:15 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-03-16 20:33:15 -0700 |
commit | 4c8960dba591beb850ea1b49d02c8771ab705d08 (patch) | |
tree | 1d3c8492fabe3a077becc96e257c23396fadf1c0 /manifest.json |
Initial stub commit
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 16 |
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" + }] +} |