yomichan/ext/manifest.json

39 lines
1.2 KiB
JSON
Raw Normal View History

2016-03-17 03:33:15 +00:00
{
"manifest_version": 2,
2016-05-18 20:28:50 +00:00
"name": "Yomichan",
2016-12-29 03:30:00 +00:00
"version": "0.9983",
2016-03-17 03:33:15 +00:00
2016-05-18 20:28:50 +00:00
"description": "Japanese dictionary with Anki integration",
"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-07 05:20:00 +00:00
2016-05-18 20:28:50 +00:00
"author": "Alex Yatskov",
"background": {"page": "bg/background.html"},
"content_scripts": [{
2016-07-24 17:59:37 +00:00
"matches": ["*://*/*", "file://*/*"],
"js": [
"fg/js/source-range.js",
2016-07-26 03:43:35 +00:00
"fg/js/source-element.js",
"fg/js/popup.js",
2016-09-12 03:59:42 +00:00
"fg/js/util.js",
2016-09-16 05:44:33 +00:00
"fg/js/driver.js"
],
2016-05-18 20:28:50 +00:00
"css": ["fg/css/client.css"]
}],
"minimum_chrome_version": "45.0.0.0",
"options_ui": {
"page": "bg/options.html"
},
2016-07-24 17:59:37 +00:00
"permissions": ["file://*/*", "http://127.0.0.1/*", "storage"],
2016-04-25 03:04:14 +00:00
"web_accessible_resources": [
"fg/css/frame.css",
2016-05-10 02:07:39 +00:00
"fg/img/add_kanji.png",
2016-08-10 15:44:52 +00:00
"fg/img/add_term_kana.png",
"fg/img/add_term_kanji.png",
2016-07-18 15:08:31 +00:00
"fg/img/play_audio.png",
2016-05-10 02:07:39 +00:00
"fg/js/frame.js",
"fg/ttf/kanji-stroke-orders.ttf",
"fg/ttf/vl-gothic-regular.ttf"
]
2016-03-17 03:33:15 +00:00
}