Lichess Speaker

Lichess clock and moves speaker

Co to jest Lichess Speaker?

Lichess Speaker to rozszerzenie Chrome opracowane przez maciej.caderek, a jego główną funkcją jest „Lichess clock and moves speaker”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lichess Speaker

Pobierz pliki rozszerzeń Lichess Speaker 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

                        Lichess extension that uses voice synthesis to
* remind you of the remaining time during the chess game,
* remind you to move after specified time,
* start the countdown when you are very low on time,
* read the moves from the chess notation.

You can chose from many different voices (different languages)!
You can customize your alerts for each time control!
You can play blindfolded!                    

Podstawowe informacje o rozszerzeniu

Nazwa Lichess Speaker Lichess Speaker
ID kpdengkjmlndpmnlllipgdgkpdlcgndi
Oficjalny URL https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi
Opis Lichess clock and moves speaker
Rozmiar pliku 227 KB
Liczba instalacji 104
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2021-09-14
Data Publikacji 2021-09-06
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper maciej.caderek
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/caderek/lichess-speaker
Adres URL Strony Pomocy https://github.com/caderek/lichess-speaker/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lichess Speaker",
    "description": "Lichess clock and moves speaker",
    "version": "1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "\/images\/ico16.png",
            "32": "\/images\/ico32.png",
            "48": "\/images\/ico48.png",
            "96": "\/images\/ico96.png",
            "128": "\/images\/ico128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/ico16.png",
        "32": "\/images\/ico32.png",
        "48": "\/images\/ico48.png",
        "96": "\/images\/ico96.png",
        "128": "\/images\/ico128.png"
    }
}