Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Co je Chess Assistant?
Chess Assistant je rozšíření Chrome vyvinuté Branimir Klarić, a jeho hlavní funkcí je „Chess Assistant provides chess hints and analysis on chess.com“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Chess Assistant
Stáhněte si soubory rozšíření Chess Assistant ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
Oficiální URL | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
Popis | Chess Assistant provides chess hints and analysis on chess.com |
Velikost souboru | 153 KB |
Počet instalací | 517 |
Aktuální Verze | 0.2.1 |
Poslední Aktualizace | 2023-09-29 |
Datum Vydání | 2023-07-10 |
Hodnocení | 1.00/5 Celkem 1 Hodnocení |
Vývojář | Branimir Klarić |
[email protected] | |
Typ Platby | in_app |
Podporované Jazyky | 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 } } |