PawnGun

Live Analysis for Lichess.org Games

Cos'è PawnGun?

PawnGun è un'estensione di Chrome sviluppata da PawnGun, e la sua funzione principale è "Live Analysis for Lichess.org Games".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PawnGun

Scarica i file di estensione PawnGun in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PawnGun PawnGun
ID jbabllibbfajahdjapeiphjdiencjame
URL Ufficiale https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame
Descrizione Live Analysis for Lichess.org Games
Dimensione del File 102 KB
Conteggio Installazioni 82
Versione Corrente 0.1
Ultimo Aggiornamento 2020-12-26
Data di Pubblicazione 2020-12-21
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore PawnGun
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.thapawngun.live
URL della Pagina di Aiuto http://www.thapawngun.live
Lingue Supportate 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"
    }
}