Marmalade

Chess AI, Lichess

Cos'è Marmalade?

Marmalade è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Chess AI, Lichess".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Marmalade

Scarica i file di estensione Marmalade 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

                        Chess engine, work in progress, works with lichess, during a game ask Marmalade for the next best move!
Just click the button once and wait for the cookies :)                    

Informazioni di Base sull'Estensione

Nome Marmalade Marmalade
ID gcngofmmfchabjegdjagkpdnblnbjfcp
URL Ufficiale https://chromewebstore.google.com/detail/marmalade/gcngofmmfchabjegdjagkpdnblnbjfcp
Descrizione Chess AI, Lichess
Dimensione del File 465 KB
Conteggio Installazioni 97
Versione Corrente 0.0.2
Ultimo Aggiornamento 2018-02-25
Data di Pubblicazione 2018-02-25
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://ryan-qiyu-jiang.github.io/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Marmalade",
    "description": "Chess AI, Lichess",
    "version": "0.0.2",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html",
        "default_title": "Next Move"
    }
}