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文件

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