mcChessCom - move confirmation for chess.com

Move confirmation for chess.com

Was ist mcChessCom - move confirmation for chess.com?

mcChessCom - move confirmation for chess.com ist eine Chrome-Erweiterung, die von mail.vpal entwickelt wurde, und ihr Hauptmerkmal ist "Move confirmation for chess.com".

Erweiterungsscreenshots

screenshot

mcChessCom - move confirmation for chess.com-Erweiterungs-CRX-Datei herunterladen

Laden Sie mcChessCom - move confirmation for chess.com-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name mcChessCom - move confirmation for chess.com mcChessCom - move confirmation for chess.com
ID hfckonpdalooejghjpbpimhcgighijck
Offizielle URL https://chromewebstore.google.com/detail/mcchesscom-move-confirmat/hfckonpdalooejghjpbpimhcgighijck
Beschreibung Move confirmation for chess.com
Dateigröße 176 KB
Installationsanzahl 142
Aktuelle Version 1.1.1
Letztes Update 2023-09-28
Veröffentlichungsdatum 2022-02-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler mail.vpal
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/VladimirPal/mcChessCom
Hilfeseite URL https://github.com/VladimirPal/mcChessCom/issues
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}