yomichan/ext/manifest.json

55 lines
1.6 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-03-06 00:03:14 +00:00
"version": "1.1.0",
2016-03-17 03:33:15 +00:00
2016-05-18 20:28:50 +00:00
"description": "Japanese dictionary with Anki integration",
2017-03-04 20:27:05 +00:00
"icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},
2017-03-02 04:49:46 +00:00
"browser_action": {
2017-03-04 20:27:05 +00:00
"default_icon": {"19": "mixed/img/icon19.png", "38": "mixed/img/icon38.png"},
2017-03-02 04:49:46 +00:00
"default_popup": "bg/popup.html"
},
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": [{
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"js": [
2017-03-03 06:35:02 +00:00
"fg/js/util.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-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": [
2017-02-26 19:49:37 +00:00
"<all_urls>",
2016-12-29 17:36:54 +00:00
"storage"
],
2016-04-25 03:04:14 +00:00
"web_accessible_resources": [
"fg/frame.html",
2016-05-10 02:07:39 +00:00
"fg/js/frame.js",
2017-03-04 20:27:05 +00:00
"mixed/css/frame.css",
2017-03-05 03:53:28 +00:00
"mixed/img/add-kanji.png",
"mixed/img/add-term-kana.png",
"mixed/img/add-term-kanji.png",
"mixed/img/play-audio.png",
2017-03-04 20:27:05 +00:00
"mixed/img/spinner.gif",
"mixed/mp3/button.mp3",
"mixed/ttf/kanji-stroke-orders.ttf",
"mixed/ttf/vl-gothic-regular.ttf"
2017-01-29 05:10:26 +00:00
],
"applications": {
"gecko": {
2017-03-06 02:11:14 +00:00
"id": "yomichan@foosoft.net",
"strict_min_version": "51.0",
"update_url": "https://foosoft.net/projects/yomichan/dl/updates.json"
2017-01-29 05:10:26 +00:00
}
}
2016-03-17 03:33:15 +00:00
}