Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
Wat is Lichess Text To Speech?
Lichess Text To Speech is een Chrome-extensie ontwikkeld door Eika, en de belangrijkste functie is "Uses text to speech to pronounce moves played on Lichess".
Extensie Screenshots
Download het CRX-bestand van de extensie Lichess Text To Speech
Download Lichess Text To Speech-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
Officiële URL | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
Beschrijving | Uses text to speech to pronounce moves played on Lichess |
Bestandsgrootte | 12.66 KB |
Aantal Installaties | 612 |
Huidige Versie | 1.0.5 |
Laatst Bijgewerkt | 2023-08-11 |
Publicatiedatum | 2020-04-14 |
Beoordeling | 4.17/5 Totaal 12 Beoordelingen |
Ontwikkelaar | Eika |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |