yomichan/ext/manifest.json

19 lines
420 B
JSON
Raw Normal View History

2016-03-17 03:33:15 +00:00
{
"manifest_version": 2,
"name": "Yomichan",
"description": "Yomichan Extension",
"version": "0.0.1",
"browser_action": {
"default_icon": "icon.png"
},
2016-03-20 17:52:27 +00:00
"background": { "page": "background.html" },
2016-03-17 03:33:15 +00:00
"content_scripts": [{
"matches": [ "http://*/*", "https://*/*" ],
2016-03-20 17:52:27 +00:00
"js": [ "content.js" ],
2016-03-17 03:33:15 +00:00
"run_at": "document_end"
}]
}