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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Chess.com cheats एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}