yomichan/ext/manifest.json

18 lines
509 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"},
2016-03-29 03:09:30 +00:00
"background": {"page": "bg/background.html"},
"options_page": "bg/options.html",
2016-04-07 03:50:12 +00:00
"permissions": ["storage"],
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-04-07 03:50:12 +00:00
"js": ["fg/js/api.js", "fg/js/util.js", "fg/js/client.js"],
"css": ["fg/css/client.css"]
2016-03-17 03:33:15 +00:00
}]
}