Lichess Speaker
Lichess clock and moves speaker
Lichess Speakerとは何ですか?
Lichess Speakerはmaciej.caderekによって開発されたChromeの拡張機能で、その主な機能は「Lichess clock and moves speaker」です。
拡張機能のスクリーンショット
Lichess Speaker拡張機能のCRXファイルをダウンロード
Lichess Speaker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Lichess extension that uses voice synthesis to
* remind you of the remaining time during the chess game,
* remind you to move after specified time,
* start the countdown when you are very low on time,
* read the moves from the chess notation.
You can chose from many different voices (different languages)!
You can customize your alerts for each time control!
You can play blindfolded! 拡張機能の基本情報
| 名前 | |
| ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
| 公式URL | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
| 説明 | Lichess clock and moves speaker |
| ファイルサイズ | 227 KB |
| インストール数 | 104 |
| 現在のバージョン | 1.4 |
| 最終更新日 | 2021-09-14 |
| 公開日 | 2021-09-06 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | maciej.caderek |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/caderek/lichess-speaker |
| ヘルプページのURL | https://github.com/caderek/lichess-speaker/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Lichess Speaker",
"description": "Lichess clock and moves speaker",
"version": "1.4",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"scripting"
],
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "\/images\/ico16.png",
"32": "\/images\/ico32.png",
"48": "\/images\/ico48.png",
"96": "\/images\/ico96.png",
"128": "\/images\/ico128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/lichess.org\/*"
],
"js": [
"content-script.js"
]
}
],
"icons": {
"16": "\/images\/ico16.png",
"32": "\/images\/ico32.png",
"48": "\/images\/ico48.png",
"96": "\/images\/ico96.png",
"128": "\/images\/ico128.png"
}
} | |