yomichan/ext/manifest.json

39 lines
971 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-04-07 05:20:00 +00:00
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "img/icon19.png",
"38": "img/icon38.png"
}
},
2016-04-25 03:04:14 +00:00
"background": {"page": "bg/background.html"},
"options_page": "bg/options.html",
"permissions": ["storage"],
"web_accessible_resources": [
"fg/css/frame.css",
"fg/js/frame.js",
2016-05-04 03:25:35 +00:00
"fg/ttf/kanji-stroke-orders.ttf",
2016-05-04 05:07:05 +00:00
"fg/img/add_expression.png",
"fg/img/add_reading.png",
"fg/img/add_kanji.png"
2016-04-25 03:04:14 +00:00
],
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-24 04:13:34 +00:00
"js": ["fg/js/range.js", "fg/js/popup.js", "fg/js/api.js", "fg/js/client.js"],
2016-04-07 03:50:12 +00:00
"css": ["fg/css/client.css"]
2016-03-17 03:33:15 +00:00
}]
}