yomichan/ext/manifest.json

16 lines
403 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",
2016-03-21 00:15:40 +00:00
"browser_action": {"default_icon": "icon.png"},
"background": {"page": "background.html"},
2016-03-20 17:52:27 +00:00
2016-03-17 03:33:15 +00:00
"content_scripts": [{
2016-03-21 00:15:40 +00:00
"matches": ["http://*/*", "https://*/*"],
"js": ["content.js"],
2016-03-17 03:33:15 +00:00
"run_at": "document_end"
}]
}