yomichan/manifest.json

17 lines
370 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"
},
"content_scripts": [{
"matches": [ "http://*/*", "https://*/*" ],
"js": [ "content.js" ],
"run_at": "document_end"
}]
}