Chess Assistant

Chess Assistant provides chess hints and analysis on chess.com

Qu'est-ce que Chess Assistant ?

Chess Assistant est une extension Chrome développée par Branimir Klarić, et sa fonction principale est "Chess Assistant provides chess hints and analysis on chess.com".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Chess Assistant

Téléchargez les fichiers d'extension Chess Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Chess Assistant Chess Assistant
ID gpgnadojeplpnonnckfbpfpedoinfcln
URL Officiel https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln
Description Chess Assistant provides chess hints and analysis on chess.com
Taille du Fichier 153 KB
Nombre d'Installations 517
Version Actuelle 0.2.1
Dernière Mise à Jour 2023-09-29
Date de Publication 2023-07-10
Évaluation 1.00/5 Total 1 Évaluations
Développeur Branimir Klarić
Email [email protected]
Type de Paiement in_app
Langues Prises en Charge 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
    }
}