yomichan/ext/manifest.json

52 lines
1.4 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",
2017-02-26 18:44:47 +00:00
"version": "1.0.15",
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": [
2017-01-29 04:36:58 +00:00
"fg/js/gecko.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-12-29 17:36:54 +00:00
"permissions": [
"file://*/*",
2016-12-29 17:36:54 +00:00
"http://127.0.0.1/*",
"storage"
],
2016-04-25 03:04:14 +00:00
"web_accessible_resources": [
"fg/css/frame.css",
"fg/frame.html",
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",
"fg/img/spinner.gif",
2016-05-10 02:07:39 +00:00
"fg/js/frame.js",
"fg/mp3/button.mp3",
2016-05-10 02:07:39 +00:00
"fg/ttf/kanji-stroke-orders.ttf",
"fg/ttf/vl-gothic-regular.ttf"
2017-01-29 05:10:26 +00:00
],
"applications": {
"gecko": {
"id": "alex@foosoft.net"
}
}
2016-03-17 03:33:15 +00:00
}