Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
Cos'è Lichess Text To Speech?
Lichess Text To Speech è un'estensione di Chrome sviluppata da Eika, e la sua funzione principale è "Uses text to speech to pronounce moves played on Lichess".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lichess Text To Speech
Scarica i file di estensione Lichess Text To Speech in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
URL Ufficiale | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
Descrizione | Uses text to speech to pronounce moves played on Lichess |
Dimensione del File | 12.66 KB |
Conteggio Installazioni | 612 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2023-08-11 |
Data di Pubblicazione | 2020-04-14 |
Valutazione | 4.17/5 Totale 12 Valutazioni |
Sviluppatore | Eika |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |