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.
Что такое Chess.com cheats?
Chess.com cheats - это расширение Chrome, разработанное Linimik, и его основная функция - "Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board.".
Снимки экрана расширения
Скачать файл CRX расширения Chess.com cheats
Скачайте файлы расширений Chess.com cheats в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | lialglmaabndifdcnkmckbfffkmaefmm |
Официальный URL | https://chrome.google.com/webstore/detail/chesscom-cheats/lialglmaabndifdcnkmckbfffkmaefmm |
Описание | Runs a WASM Stockfish in your chess.com games. Displays the best moves (up to 3) and evaluation for the current board. |
Размер файла | 32.94 KB |
Количество установок | 2,390 |
Текущая Версия | 1.53 |
Последнее Обновление | 2023-05-09 |
Дата публикации | 2023-04-19 |
Рейтинг | 4.00/5 Всего 4 оценок |
Разработчик | Linimik |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jameslinimk/chess-com-cheater |
Поддерживаемые языки | 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" } ] } |