Lichess Speaker

Lichess clock and moves speaker

Co je Lichess Speaker?

Lichess Speaker je rozšíření Chrome vyvinuté maciej.caderek, a jeho hlavní funkcí je „Lichess clock and moves speaker“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Lichess Speaker

Stáhněte si soubory rozšíření Lichess Speaker 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í

                        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!                    

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

Název Lichess Speaker Lichess Speaker
ID kpdengkjmlndpmnlllipgdgkpdlcgndi
Oficiální URL https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi
Popis Lichess clock and moves speaker
Velikost souboru 227 KB
Počet instalací 104
Aktuální Verze 1.4
Poslední Aktualizace 2021-09-14
Datum Vydání 2021-09-06
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář maciej.caderek
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/caderek/lichess-speaker
URL Stránky Nápovědy https://github.com/caderek/lichess-speaker/issues
Podporované Jazyky 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"
    }
}