Lichess Text To Speech

Uses text to speech to pronounce moves played on Lichess

Co je Lichess Text To Speech?

Lichess Text To Speech je rozšíření Chrome vyvinuté Eika, a jeho hlavní funkcí je „Uses text to speech to pronounce moves played on Lichess“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Lichess Text To Speech

Stáhněte si soubory rozšíření Lichess Text To Speech ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Lichess Text To Speech Lichess Text To Speech
ID khmempcacbgfbhkeocpahgcmognoaoeh
Oficiální URL https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh
Popis Uses text to speech to pronounce moves played on Lichess
Velikost souboru 12.66 KB
Počet instalací 612
Aktuální Verze 1.0.5
Poslední Aktualizace 2023-08-11
Datum Vydání 2020-04-14
Hodnocení 4.17/5 Celkem 12 Hodnocení
Vývojář Eika
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}