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.

Τι είναι το Chess.com cheats;

Το Chess.com cheats είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Linimik, και η κύρια λειτουργία του είναι "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Chess.com cheats

Λήψη αρχείων επέκτασης Chess.com cheats σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chess.com cheats Chess.com cheats
ID lialglmaabndifdcnkmckbfffkmaefmm
Επίσημο URL https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm
Περιγραφή Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.
Μέγεθος Αρχείου 32.94 KB
Αριθμός Εγκαταστάσεων 2,390
Τρέχουσα Έκδοση 1.53
Τελευταία Ενημέρωση 2023-05-09
Ημερομηνία Δημοσίευσης 2023-04-19
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Linimik
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/jameslinimk/chess-com-cheater
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}