Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
Apa itu Lichess Text To Speech?
Lichess Text To Speech adalah ekstensi Chrome yang dikembangkan oleh Eika, dan fitur utamanya adalah "Uses text to speech to pronounce moves played on Lichess".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Lichess Text To Speech
Unduh file ekstensi Lichess Text To Speech dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
URL Resmi | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
Deskripsi | Uses text to speech to pronounce moves played on Lichess |
Ukuran File | 12.66 KB |
Jumlah Instalasi | 612 |
Versi Saat Ini | 1.0.5 |
Terakhir Diperbarui | 2023-08-11 |
Tanggal Publikasi | 2020-04-14 |
Penilaian | 4.17/5 Total 12 Penilaian |
Pengembang | Eika |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |