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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board."입니다.

확장 프로그램 스크린샷

screenshot

Chess.com cheats 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}