Chess.com BestMove

A stockfish based chess solver for chess.com. Automatically highlight best moves.

Chess.com BestMove là gì?

Chess.com BestMove là một tiện ích mở rộng Chrome được phát triển bởi devin.wieker, và tính năng chính của nó là "A stockfish based chess solver for chess.com. Automatically highlight best moves.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Chess.com BestMove 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

                        This chrome extension automatically highlights optimal chess moves in real-time during your chess.com matches, helping you to improve your game and make smarter decisions on the board. With this extension, you'll be able to take your chess skills to the next level and dominate your opponents. Try it out for free!

Pin it to your tool bar to quickly toggle the engine, view the evaluation*, and see statistics on top opening book moves in real time.

You can also hit the 'e' key to conveniently toggle the engine and reveal the top move.

Go to the options page to change the highlight color or search depth (right click the icon -> Option).

The engine will continuously solve when it is your turn to move. It will quickly display a good move in ~1 second, but may change moves as the solve progresses and depth increases. If desired, the max search depth can be adjusted in the options. 

Normally, chrome will close extension pop-ups when you click away. If you want to keep it open all match so you can keep an eye on the information, there is a trick: right click in the popup and click 'inspect'. It will remain open.

WARNING: Chess.com WILL ban your account if you use this tool excessively, and potentially your ip address after a second offense. They have sophisticated detection and know when you are making too many super human moves! I recommend using it sparingly in tough spots as a learning tool.

KNOWN BUGS:
- There are issues with pre-moving. If the move suggestion does not appear after a pre-move, re-toggle the switch to prompt the engine to re-solve.
- You cannot have more than one chess.com tab open at a time. If it detects more than one chess board, it will fail to display the move properly.
- You must not have the piece "Animation" setting set to "Arcade"
- Occasionally, stockfish raises out of memory errors and the extension completely breaks, even if you refresh the page. Fully closing and re-opening the browser will be needed in this case unfortunately. I'm working on fixing this -- let me know if you can consistently reproduce this issue. 

If you have any questions, feature requests, or other bug reports feel free to email me. I am actively working to improve this extension.

Hover over opening book moves to highlight them on the board.

This extension currently uses stockfish 11, same as chess.com. I'm investigating stockfish 15 -- if you're interested in this, feel free to email me.

*evaluation: https://support.chess.com/article/656-what-do-the-computer-evaluation-numbers-mean-like-225                    

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

Tên Chess.com BestMove Chess.com BestMove
ID dfndjgfnjhgdbpnknajfibghclginaig
URL Chính Thức https://chrome.google.com/webstore/detail/chesscom-bestmove/dfndjgfnjhgdbpnknajfibghclginaig
Mô tả A stockfish based chess solver for chess.com. Automatically highlight best moves.
Kích Thước Tệp 802 KB
Số Lần Cài Đặt 9,408
Phiên Bản Hiện Tại 2.63
Cập Nhật Lần Cuối 2023-04-16
Ngày Phát Hành 2023-01-08
Đánh Giá 3.85/5 Tổng số 34 Đánh Giá
Nhà Phát Triển devin.wieker
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chess.com BestMove",
    "version": "2.63",
    "author": "Devin Wieker",
    "description": "A stockfish based chess solver for chess.com. Automatically highlight best moves.",
    "permissions": [
        "activeTab",
        "storage",
        "identity",
        "identity.email"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/play\/*",
                "https:\/\/www.chess.com\/game\/*",
                "https:\/\/www.chess.com\/puzzles\/*",
                "https:\/\/www.chess.com\/analysis\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/extensionpay.com\/*"
            ],
            "js": [
                "ExtPay.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "bg-loader.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "A stockfish based chess engine for chess.com games.",
        "default_icon": {
            "16": "favicon-16x16.png",
            "32": "favicon-32x32.png"
        }
    },
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png",
        "128": "icon128.png"
    }
}