yomichan/ext/manifest.json

16 lines
432 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": ["*://*/*"],
2016-03-27 20:21:52 +00:00
"js": ["lib/jquery-2.2.2.min.js", "api.js", "util.js", "client.js"],
"css": ["client.css"]
2016-03-17 03:33:15 +00:00
}]
}