Inspect and view changes in ユニコエ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "ユニコエ",
"short_name": "UniCoe",
"description": "ユニコエを使ってWebページを読み上げる拡張機能です。",
"author": "ビス",
"version": "1.0.0",
"manifest_version": 2,
"permissions": [
"contextMenus",
"storage"
],
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"scripts": [
"lib/axios.min.js",
"js/unicoe.js",
"js/background.js"
],
"presistent": false
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib/axios.min.js",
"js/unicoe.js",
"js/content.js"
]
}
],
"commands": {
"play_page": {
"suggested_key": {
"default": "Alt+P",
"mac": "Alt+P"
},
"description": "ページを読み上げる"
},
"play_range": {
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
},
"description": "選択範囲を読み上げる"
},
"stop": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "読み上げの停止"
}
},
"options_page": "html/option.html"
}