Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Was ist Chess Assistant?
Chess Assistant ist eine Chrome-Erweiterung, die von Branimir Klarić entwickelt wurde, und ihr Hauptmerkmal ist "Chess Assistant provides chess hints and analysis on chess.com".
Erweiterungsscreenshots
Chess Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chess Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
Offizielle URL | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
Beschreibung | Chess Assistant provides chess hints and analysis on chess.com |
Dateigröße | 153 KB |
Installationsanzahl | 517 |
Aktuelle Version | 0.2.1 |
Letztes Update | 2023-09-29 |
Veröffentlichungsdatum | 2023-07-10 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | Branimir Klarić |
[email protected] | |
Zahlungsart | in_app |
Unterstützte Sprachen | 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 } } |