Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
Vad är Lichess Text To Speech?
Lichess Text To Speech är en Chrome-tillägg utvecklad av Eika, och dess huvudfunktion är "Uses text to speech to pronounce moves played on Lichess".
Tilläggsskärmbilder
Ladda ner Lichess Text To Speech-förlängningens CRX-fil
Ladda ner Lichess Text To Speech-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
Officiell webbadress | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
Beskrivning | Uses text to speech to pronounce moves played on Lichess |
Filstorlek | 12.66 KB |
Antal Installationer | 612 |
Aktuell Version | 1.0.5 |
Senast Uppdaterad | 2023-08-11 |
Publiceringsdatum | 2020-04-14 |
Betyg | 4.17/5 Totalt 12 Betyg |
Utvecklare | Eika |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |