PawnGun

Live Analysis for Lichess.org Games

ما هو PawnGun؟

PawnGun هو إضافة Chrome تم تطويرها بواسطة PawnGun، والميزة الرئيسية لها هي "Live Analysis for Lichess.org Games".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة PawnGun

قم بتنزيل ملفات الامتداد PawnGun بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension has the following features:

* Allows you to view LIVE analysis while you are watching or streaming games being played live in that moment.
* This extension DOES NOT suggest good moves, it only shows how bad or good is each side according to a chess engine Analysis.
* Works only for Lichess.org ... for now.
* Does not support Chess960 variant ... for now.

* You should use this extension only for educational purposes.

I am not affiliated in any way with lichess or chess.com.                    

معلومات أساسية عن التمديد

الاسم PawnGun PawnGun
ID jbabllibbfajahdjapeiphjdiencjame
عنوان URL الرسمي https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame
الوصف Live Analysis for Lichess.org Games
حجم الملف 102 KB
عدد التثبيتات 82
النسخة الحالية 0.1
آخر تحديث 2020-12-26
تاريخ النشر 2020-12-21
تقييم 3.00/5 مجموع تقييمات 2
المطور PawnGun
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://www.thapawngun.live
عنوان صفحة المساعدة http://www.thapawngun.live
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PawnGun",
    "description": "Live Analysis for Lichess.org Games",
    "version": "0.1",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "chess.js",
                "content.js",
                "lozza.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}