Lichess Speaker

Lichess clock and moves speaker

Qu'est-ce que Lichess Speaker ?

Lichess Speaker est une extension Chrome développée par maciej.caderek, et sa fonction principale est "Lichess clock and moves speaker".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Lichess Speaker

Téléchargez les fichiers d'extension Lichess Speaker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Lichess Speaker Lichess Speaker
ID kpdengkjmlndpmnlllipgdgkpdlcgndi
URL Officiel https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi
Description Lichess clock and moves speaker
Taille du Fichier 227 KB
Nombre d'Installations 104
Version Actuelle 1.4
Dernière Mise à Jour 2021-09-14
Date de Publication 2021-09-06
Évaluation 5.00/5 Total 3 Évaluations
Développeur maciej.caderek
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/caderek/lichess-speaker
URL de la Page d'Aide https://github.com/caderek/lichess-speaker/issues
Langues Prises en Charge 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"
    }
}