mcChessCom - move confirmation for chess.com

Move confirmation for chess.com

Cos'è mcChessCom - move confirmation for chess.com?

mcChessCom - move confirmation for chess.com è un'estensione di Chrome sviluppata da mail.vpal, e la sua funzione principale è "Move confirmation for chess.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione mcChessCom - move confirmation for chess.com

Scarica i file di estensione mcChessCom - move confirmation for chess.com in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome mcChessCom - move confirmation for chess.com mcChessCom - move confirmation for chess.com
ID hfckonpdalooejghjpbpimhcgighijck
URL Ufficiale https://chromewebstore.google.com/detail/mcchesscom-move-confirmat/hfckonpdalooejghjpbpimhcgighijck
Descrizione Move confirmation for chess.com
Dimensione del File 176 KB
Conteggio Installazioni 142
Versione Corrente 1.1.1
Ultimo Aggiornamento 2023-09-28
Data di Pubblicazione 2022-02-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore mail.vpal
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/VladimirPal/mcChessCom
URL della Pagina di Aiuto https://github.com/VladimirPal/mcChessCom/issues
Lingue Supportate 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\/*"
            ]
        }
    ]
}