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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
    }
}