PawnGun

Live Analysis for Lichess.org Games

PawnGunคืออะไร?

PawnGun เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PawnGun และคุณลักษณะหลักของมันคือ "Live Analysis for Lichess.org Games"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PawnGun

ดาวน์โหลดไฟล์ส่วนขยาย PawnGun ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    }
}