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 |
官方網址 | 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" } ] } |