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.
Cos'è Chess.com cheats?
Chess.com cheats è un'estensione di Chrome sviluppata da Linimik, e la sua funzione principale è "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chess.com cheats
Scarica i file di estensione Chess.com cheats in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | lialglmaabndifdcnkmckbfffkmaefmm |
URL Ufficiale | https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm |
Descrizione | Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board. |
Dimensione del File | 32.94 KB |
Conteggio Installazioni | 2,390 |
Versione Corrente | 1.53 |
Ultimo Aggiornamento | 2023-05-09 |
Data di Pubblicazione | 2023-04-19 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | Linimik |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jameslinimk/chess-com-cheater |
Lingue Supportate | 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" } ] } |