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.
Wat is Chess.com cheats?
Chess.com cheats is een Chrome-extensie ontwikkeld door Linimik, en de belangrijkste functie is "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".
Extensie Screenshots
Download het CRX-bestand van de extensie Chess.com cheats
Download Chess.com cheats-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | lialglmaabndifdcnkmckbfffkmaefmm |
Officiële URL | https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm |
Beschrijving | Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board. |
Bestandsgrootte | 32.94 KB |
Aantal Installaties | 2,390 |
Huidige Versie | 1.53 |
Laatst Bijgewerkt | 2023-05-09 |
Publicatiedatum | 2023-04-19 |
Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Linimik |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/jameslinimk/chess-com-cheater |
Ondersteunde Talen | 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" } ] } |