Chess.com Next Move

A Chess extension to determine best next move on chess.com

Cos'è Chess.com Next Move?

Chess.com Next Move è un'estensione di Chrome sviluppata da Albert Putra Purnama, e la sua funzione principale è "A Chess extension to determine best next move on chess.com".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Chess.com Next Move

Scarica i file di estensione Chess.com Next Move 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

                        Stockfish AI for chess.com

Figure out the best next move with a given board state in chess.com!

Go find a match, then select your piece color!

Demo here: https://youtu.be/pSSuKUllC3g

Have fun!                    

Informazioni di Base sull'Estensione

Nome Chess.com Next Move Chess.com Next Move
ID ieaoeokfilgofofpdcehmgokenlnbdaa
URL Ufficiale https://chrome.google.com/webstore/detail/chesscom-next-move/ieaoeokfilgofofpdcehmgokenlnbdaa
Descrizione A Chess extension to determine best next move on chess.com
Dimensione del File 464 KB
Conteggio Installazioni 2,000
Versione Corrente 0.0.2
Ultimo Aggiornamento 2021-03-15
Data di Pubblicazione 2019-03-08
Valutazione 4.04/5 Totale 27 Valutazioni
Sviluppatore Albert Putra Purnama
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Chess extension to determine best next move on chess.com",
    "version": "0.0.2",
    "manifest_version": 3,
    "name": "Chess.com Next Move",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "knight16.png",
            "32": "knight32.png",
            "48": "knight48.png",
            "128": "knight128.png"
        }
    },
    "icons": {
        "16": "knight16.png",
        "32": "knight32.png",
        "48": "knight48.png",
        "128": "knight128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/chess.com\/*",
        "https:\/\/www.chess.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}