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.
Vad är Chess.com cheats?
Chess.com cheats är en Chrome-tillägg utvecklad av Linimik, och dess huvudfunktion är "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".
Tilläggsskärmbilder
Ladda ner Chess.com cheats-förlängningens CRX-fil
Ladda ner Chess.com cheats-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | lialglmaabndifdcnkmckbfffkmaefmm |
Officiell webbadress | https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm |
Beskrivning | Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board. |
Filstorlek | 32.94 KB |
Antal Installationer | 2,390 |
Aktuell Version | 1.53 |
Senast Uppdaterad | 2023-05-09 |
Publiceringsdatum | 2023-04-19 |
Betyg | 4.00/5 Totalt 4 Betyg |
Utvecklare | Linimik |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jameslinimk/chess-com-cheater |
Stödda Språk | 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" } ] } |