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 là gì?

Chess.com cheats là một tiện ích mở rộng Chrome được phát triển bởi Linimik, và tính năng chính của nó là "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chess.com cheats

Tải xuống các tệp mở rộng Chess.com cheats dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chess.com cheats Chess.com cheats
ID lialglmaabndifdcnkmckbfffkmaefmm
URL Chính Thức https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm
Mô tả Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.
Kích Thước Tệp 32.94 KB
Số Lần Cài Đặt 2,390
Phiên Bản Hiện Tại 1.53
Cập Nhật Lần Cuối 2023-05-09
Ngày Phát Hành 2023-04-19
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Linimik
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jameslinimk/chess-com-cheater
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}