yomichan/ext/manifest.json
2017-06-26 20:04:42 -07:00

58 lines
1.6 KiB
JSON

{
"manifest_version": 2,
"name": "Yomichan",
"version": "1.2.0",
"description": "Japanese dictionary with Anki integration",
"icons": {"16": "mixed/img/icon16.png", "48": "mixed/img/icon48.png", "128": "mixed/img/icon128.png"},
"browser_action": {
"default_icon": {"19": "mixed/img/icon19.png", "38": "mixed/img/icon38.png"},
"default_popup": "bg/popup.html"
},
"author": "Alex Yatskov",
"background": {"page": "bg/background.html"},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*", "file://*/*"],
"js": [
"fg/js/util.js",
"fg/js/source-range.js",
"fg/js/source-element.js",
"fg/js/popup.js",
"fg/js/driver.js"
],
"css": ["fg/css/client.css"]
}],
"minimum_chrome_version": "45.0.0.0",
"options_ui": {
"page": "bg/options.html"
},
"permissions": [
"<all_urls>",
"storage",
"clipboardWrite"
],
"commands": {
"toggle": {
"suggested_key": {
"default": "Alt+Delete"
},
"description": "Toggle text scanning"
},
"search": {
"suggested_key": {
"default": "Alt+Insert"
},
"description": "Open search window"
}
},
"web_accessible_resources": ["fg/frame.html"],
"applications": {
"gecko": {
"id": "yomichan-live@foosoft.net",
"strict_min_version": "51.0",
"update_url": "https://foosoft.net/projects/yomichan/dl/updates.json"
}
}
}