Chess.com cheats

Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.

O que é Chess.com cheats?

Chess.com cheats é uma extensão do Chrome desenvolvida por Linimik, e sua principal característica é "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chess.com cheats

Baixe arquivos de extensão Chess.com cheats no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Chess.com cheats uses Stockfish to calculate the best moves in a position. Has a movable popup window with customizable settings and info. Win all of your games!

Note: I made this project for educational purposes only. Use with caution and be smart. The extension itself will not get you banned, but repeated use of the best move will.

Source code (& releases for other browsers): https://github.com/jameslinimk/chess-com-cheater

# tyest                    

Informações Básicas da Extensão

Nome Chess.com cheats Chess.com cheats
ID lialglmaabndifdcnkmckbfffkmaefmm
URL Oficial https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm
Descrição Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.
Tamanho do Arquivo 32.94 KB
Contagem de Instalações 2,390
Versão Atual 1.53
Última Atualização 2023-05-09
Data de Publicação 2023-04-19
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor Linimik
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jameslinimk/chess-com-cheater
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chess.com cheats",
    "version": "1.53",
    "description": "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.",
    "icons": {
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png"
    },
    "background": {
        "service_worker": "background.bundle.min.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "content.bundle.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}