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.

Apa itu Chess.com cheats?

Chess.com cheats adalah ekstensi Chrome yang dikembangkan oleh Linimik, dan fitur utamanya adalah "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Chess.com cheats

Unduh file ekstensi Chess.com cheats dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Chess.com cheats Chess.com cheats
ID lialglmaabndifdcnkmckbfffkmaefmm
URL Resmi https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm
Deskripsi Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.
Ukuran File 32.94 KB
Jumlah Instalasi 2,390
Versi Saat Ini 1.53
Terakhir Diperbarui 2023-05-09
Tanggal Publikasi 2023-04-19
Penilaian 4.00/5 Total 4 Penilaian
Pengembang Linimik
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jameslinimk/chess-com-cheater
Bahasa yang Didukung 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"
        }
    ]
}