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.
Was ist Chess.com cheats?
Chess.com cheats ist eine Chrome-Erweiterung, die von Linimik entwickelt wurde, und ihr Hauptmerkmal ist "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".
Erweiterungsscreenshots
Chess.com cheats-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chess.com cheats-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | lialglmaabndifdcnkmckbfffkmaefmm |
Offizielle URL | https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm |
Beschreibung | Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board. |
Dateigröße | 32.94 KB |
Installationsanzahl | 2,390 |
Aktuelle Version | 1.53 |
Letztes Update | 2023-05-09 |
Veröffentlichungsdatum | 2023-04-19 |
Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
Entwickler | Linimik |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jameslinimk/chess-com-cheater |
Unterstützte Sprachen | 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" } ] } |