mcChessCom - move confirmation for chess.com

Move confirmation for chess.com

Vad är mcChessCom - move confirmation for chess.com?

mcChessCom - move confirmation for chess.com är en Chrome-tillägg utvecklad av mail.vpal, och dess huvudfunktion är "Move confirmation for chess.com".

Tilläggsskärmbilder

screenshot

Ladda ner mcChessCom - move confirmation for chess.com-förlängningens CRX-fil

Ladda ner mcChessCom - move confirmation for chess.com-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn mcChessCom - move confirmation for chess.com mcChessCom - move confirmation for chess.com
ID hfckonpdalooejghjpbpimhcgighijck
Officiell webbadress https://chromewebstore.google.com/detail/mcchesscom-move-confirmat/hfckonpdalooejghjpbpimhcgighijck
Beskrivning Move confirmation for chess.com
Filstorlek 176 KB
Antal Installationer 142
Aktuell Version 1.1.1
Senast Uppdaterad 2023-09-28
Publiceringsdatum 2022-02-20
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare mail.vpal
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/VladimirPal/mcChessCom
Hjälpsida URL https://github.com/VladimirPal/mcChessCom/issues
Stödda Språk 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\/*"
            ]
        }
    ]
}