yomichan/ext/manifest.json

15 lines
360 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-25 03:30:18 +00:00
"matches": ["*://*/*"],
"js": ["content.js", "api.js"]
2016-03-17 03:33:15 +00:00
}]
}