Chess Assistant

Chess Assistant provides chess hints and analysis on chess.com

Τι είναι το Chess Assistant;

Το Chess Assistant είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Branimir Klarić, και η κύρια λειτουργία του είναι "Chess Assistant provides chess hints and analysis on chess.com".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Chess Assistant

Λήψη αρχείων επέκτασης Chess Assistant σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chess Assistant Chess Assistant
ID gpgnadojeplpnonnckfbpfpedoinfcln
Επίσημο URL https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln
Περιγραφή Chess Assistant provides chess hints and analysis on chess.com
Μέγεθος Αρχείου 153 KB
Αριθμός Εγκαταστάσεων 517
Τρέχουσα Έκδοση 0.2.1
Τελευταία Ενημέρωση 2023-09-29
Ημερομηνία Δημοσίευσης 2023-07-10
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Branimir Klarić
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής in_app
Υποστηριζόμενες Γλώσσες 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
    }
}