Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Hvad er Chess Assistant?
Chess Assistant er en Chrome-udvidelse udviklet af Branimir Klarić, og dens hovedfunktion er "Chess Assistant provides chess hints and analysis on chess.com".
Udvidelsesskærmbilleder
Download Chess Assistant-udvidelses-CRX-fil
Download Chess Assistant-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
Officiel URL | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
Beskrivelse | Chess Assistant provides chess hints and analysis on chess.com |
Filstørrelse | 153 KB |
Antal Installationer | 517 |
Nuværende Version | 0.2.1 |
Senest Opdateret | 2023-09-29 |
Udgivelsesdato | 2023-07-10 |
Bedømmelse | 1.00/5 Samlet 1 Bedømmelser |
Udvikler | Branimir Klarić |
[email protected] | |
Betalingsmetode | in_app |
Understøttede Sprog | 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 } } |