Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
What is Lichess Text To Speech?
Lichess Text To Speech is a Chrome extension developed by Eika, and its main feature is "Uses text to speech to pronounce moves played on Lichess".
Extension Screenshots
Download Lichess Text To Speech Extension CRX File
Download Lichess Text To Speech extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
Official URL | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
Description | Uses text to speech to pronounce moves played on Lichess |
File Size | 12.66 KB |
Installation Count | 612 |
Current Version | 1.0.5 |
Last Updated | 2023-08-11 |
Publish Date | 2020-04-14 |
Rating | 4.17/5 Total 12 Ratings |
Developer | Eika |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |