PawnGun

Live Analysis for Lichess.org Games

PawnGun là gì?

PawnGun là một tiện ích mở rộng Chrome được phát triển bởi PawnGun, và tính năng chính của nó là "Live Analysis for Lichess.org Games".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PawnGun

Tải xuống các tệp mở rộng PawnGun dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PawnGun PawnGun
ID jbabllibbfajahdjapeiphjdiencjame
URL Chính Thức https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame
Mô tả Live Analysis for Lichess.org Games
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-12-26
Ngày Phát Hành 2020-12-21
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển PawnGun
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.thapawngun.live
URL Trang Trợ Giúp http://www.thapawngun.live
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}