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.

Co to jest Chess.com cheats?

Chess.com cheats to rozszerzenie Chrome opracowane przez Linimik, a jego główną funkcją jest „Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chess.com cheats

Pobierz pliki rozszerzeń Chess.com cheats w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Chess.com cheats Chess.com cheats
ID lialglmaabndifdcnkmckbfffkmaefmm
Oficjalny URL https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm
Opis Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.
Rozmiar pliku 32.94 KB
Liczba instalacji 2,390
Aktualna Wersja 1.53
Ostatnia Aktualizacja 2023-05-09
Data Publikacji 2023-04-19
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Linimik
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jameslinimk/chess-com-cheater
Obsługiwane Języki 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"
        }
    ]
}