Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
Lichess Text To Speechคืออะไร?
Lichess Text To Speech เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eika และคุณลักษณะหลักของมันคือ "Uses text to speech to pronounce moves played on Lichess"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lichess Text To Speech
ดาวน์โหลดไฟล์ส่วนขยาย Lichess Text To Speech ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Uses text to speech to pronounce moves played on Lichess. It's able to support various TTS engines supported by your browser and operating system. You can customise speech tokens like ranks, files, piece names, and other information that is being read out by TTS.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
คำอธิบาย | Uses text to speech to pronounce moves played on Lichess |
ขนาดไฟล์ | 12.66 KB |
จำนวนการติดตั้ง | 612 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2023-08-11 |
วันที่เผยแพร่ | 2020-04-14 |
คะแนน | 4.17/5 รวมทั้งหมด 12 คะแนน |
ผู้พัฒนา | Eika |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lichess Text To Speech", "short_name": "Lichess TTS", "author": "Eika Mikiku", "version": "1.0.5", "description": "Uses text to speech to pronounce moves played on Lichess", "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "script.js" ] } ], "permissions": [ "storage" ], "browser_action": { "default_icon": "knight48.png", "default_popup": "popup.html" }, "icons": { "16": "knight48.png", "48": "knight48.png", "128": "knight128.png" } } |