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.
Qu'est-ce que Chess.com cheats ?
Chess.com cheats est une extension Chrome développée par Linimik, et sa fonction principale est "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chess.com cheats
Téléchargez les fichiers d'extension Chess.com cheats au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | lialglmaabndifdcnkmckbfffkmaefmm |
URL Officiel | https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm |
Description | Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board. |
Taille du Fichier | 32.94 KB |
Nombre d'Installations | 2,390 |
Version Actuelle | 1.53 |
Dernière Mise à Jour | 2023-05-09 |
Date de Publication | 2023-04-19 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | Linimik |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jameslinimk/chess-com-cheater |
Langues Prises en Charge | 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" } ] } |