Chess Assistant

Chess Assistant provides chess hints and analysis on chess.com

Co to jest Chess Assistant?

Chess Assistant to rozszerzenie Chrome opracowane przez Branimir Klarić, a jego główną funkcją jest „Chess Assistant provides chess hints and analysis on chess.com”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Chess Assistant

Pobierz pliki rozszerzeń Chess Assistant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chess Assistant Chess Assistant
ID gpgnadojeplpnonnckfbpfpedoinfcln
Oficjalny URL https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln
Opis Chess Assistant provides chess hints and analysis on chess.com
Rozmiar pliku 153 KB
Liczba instalacji 517
Aktualna Wersja 0.2.1
Ostatnia Aktualizacja 2023-09-29
Data Publikacji 2023-07-10
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Branimir Klarić
E-mail branimir.klaric.bk@gmail.com
Typ Płatności in_app
Obsługiwane Języki 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
    }
}