PawnGun

Live Analysis for Lichess.org Games

Co to jest PawnGun?

PawnGun to rozszerzenie Chrome opracowane przez PawnGun, a jego główną funkcją jest „Live Analysis for Lichess.org Games”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PawnGun

Pobierz pliki rozszerzeń PawnGun 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PawnGun PawnGun
ID jbabllibbfajahdjapeiphjdiencjame
Oficjalny URL https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame
Opis Live Analysis for Lichess.org Games
Rozmiar pliku 102 KB
Liczba instalacji 82
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-12-26
Data Publikacji 2020-12-21
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper PawnGun
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://www.thapawngun.live
Adres URL Strony Pomocy http://www.thapawngun.live
Obsługiwane Języki 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"
    }
}