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.」です。
拡張機能のスクリーンショット
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
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" } ] } |