Lichess Text To Speech

Uses text to speech to pronounce moves played on Lichess

Co to jest Lichess Text To Speech?

Lichess Text To Speech to rozszerzenie Chrome opracowane przez Eika, a jego główną funkcją jest „Uses text to speech to pronounce moves played on Lichess”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lichess Text To Speech

Pobierz pliki rozszerzeń Lichess Text To Speech w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Lichess Text To Speech Lichess Text To Speech
ID khmempcacbgfbhkeocpahgcmognoaoeh
Oficjalny URL https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh
Opis Uses text to speech to pronounce moves played on Lichess
Rozmiar pliku 12.66 KB
Liczba instalacji 612
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2023-08-11
Data Publikacji 2020-04-14
Ocena 4.17/5 Łącznie 12 Oceny
Deweloper Eika
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}