Chess Assistant

Chess Assistant provides chess hints and analysis on chess.com

Wat is Chess Assistant?

Chess Assistant is een Chrome-extensie ontwikkeld door Branimir Klarić, en de belangrijkste functie is "Chess Assistant provides chess hints and analysis on chess.com".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Chess Assistant

Download Chess Assistant-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chess Assistant Chess Assistant
ID gpgnadojeplpnonnckfbpfpedoinfcln
Officiële URL https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln
Beschrijving Chess Assistant provides chess hints and analysis on chess.com
Bestandsgrootte 153 KB
Aantal Installaties 517
Huidige Versie 0.2.1
Laatst Bijgewerkt 2023-09-29
Publicatiedatum 2023-07-10
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Branimir Klarić
E-mail [email protected]
Betalingswijze in_app
Ondersteunde Talen 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
    }
}