Lichess Text To Speech

Uses text to speech to pronounce moves played on Lichess

Hvad er Lichess Text To Speech?

Lichess Text To Speech er en Chrome-udvidelse udviklet af Eika, og dens hovedfunktion er "Uses text to speech to pronounce moves played on Lichess".

Udvidelsesskærmbilleder

screenshot

Download Lichess Text To Speech-udvidelses-CRX-fil

Download Lichess Text To Speech-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Lichess Text To Speech Lichess Text To Speech
ID khmempcacbgfbhkeocpahgcmognoaoeh
Officiel URL https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh
Beskrivelse Uses text to speech to pronounce moves played on Lichess
Filstørrelse 12.66 KB
Antal Installationer 612
Nuværende Version 1.0.5
Senest Opdateret 2023-08-11
Udgivelsesdato 2020-04-14
Bedømmelse 4.17/5 Samlet 12 Bedømmelser
Udvikler Eika
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}