mcChessCom - move confirmation for chess.com

Move confirmation for chess.com

Qu'est-ce que mcChessCom - move confirmation for chess.com ?

mcChessCom - move confirmation for chess.com est une extension Chrome développée par mail.vpal, et sa fonction principale est "Move confirmation for chess.com".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension mcChessCom - move confirmation for chess.com

Téléchargez les fichiers d'extension mcChessCom - move confirmation for chess.com 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

                        Brings move confirmation in Live chess.
Works only with new "Play" interface!
Inspired by pain from the topic https://www.chess.com/forum/view/livechess/move-confirmation

Native integration, using internal API.
Fast toggle button on the right side panel(see screenshot).
Settings:
Confirm starting from N step.
Stop confirm before N seconds.
Alarm if not confirm after N seconds

Additionally:
Confirm hotkeys - Y, Space, Enter
Cancel confirm - N, Esc,Backspace, Delete

Open source https://github.com/VladimirPal/mcChessCom                    

Informations de Base sur l'Extension

Nom mcChessCom - move confirmation for chess.com mcChessCom - move confirmation for chess.com
ID hfckonpdalooejghjpbpimhcgighijck
URL Officiel https://chromewebstore.google.com/detail/mcchesscom-move-confirmat/hfckonpdalooejghjpbpimhcgighijck
Description Move confirmation for chess.com
Taille du Fichier 176 KB
Nombre d'Installations 142
Version Actuelle 1.1.1
Dernière Mise à Jour 2023-09-28
Date de Publication 2022-02-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur mail.vpal
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/VladimirPal/mcChessCom
URL de la Page d'Aide https://github.com/VladimirPal/mcChessCom/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Move confirmation for chess.com",
    "version": "1.1.1",
    "manifest_version": 3,
    "name": "mcChessCom - move confirmation for chess.com",
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "contentInject.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.bundle.js",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                "*:\/\/*.chess.com\/*"
            ]
        }
    ]
}