Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
What is Chess Assistant?
Chess Assistant is a Chrome extension developed by Branimir Klarić, and its main feature is "Chess Assistant provides chess hints and analysis on chess.com".
Extension Screenshots
Download Chess Assistant Extension CRX File
Download Chess Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Features: ✓ Show attackers for each square ✓ Highlight losing and winning trades ✓ Preview your next move ✓ Visualize entire attack lines Works on all chess.com boards, including live games, bot games, puzzles and more. Comes with a free 30-day trial. Receive unlimited access for a one-time payment. Feel free to leave any feedback you might have, I would be happy to hear it.
Extension Basic Information
Name | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
Official URL | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
Description | Chess Assistant provides chess hints and analysis on chess.com |
File Size | 153 KB |
Installation Count | 517 |
Current Version | 0.2.1 |
Last Updated | 2023-09-29 |
Publish Date | 2023-07-10 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Branimir Klarić |
[email protected] | |
Payment Type | in_app |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chess Assistant", "description": "Chess Assistant provides chess hints and analysis on chess.com", "version": "0.2.1", "icons": { "192": "icon.png" }, "action": { "default_icon": { "192": "icon.png" }, "default_title": "Chess Assistant" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.chess.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.chess.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false } } |