Lichess Speaker
Lichess clock and moves speaker
Lichess Speakerคืออะไร?
Lichess Speaker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย maciej.caderek และคุณลักษณะหลักของมันคือ "Lichess clock and moves speaker"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lichess Speaker
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |