Opening Chooser

Based on the first few chess moves, chooses a random opening for you to play

Cos'è Opening Chooser?

Opening Chooser è un'estensione di Chrome sviluppata da usama8800, e la sua funzione principale è "Based on the first few chess moves, chooses a random opening for you to play".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Opening Chooser

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

                        Recommend a random opening based on current position. Currently works on lichess.org
You need to be signed in or have board coordinates on for the extension to know what color you are. Otherwise it assumes white.

Should help learn chess instead of playing the same opening every game and just memorizing moves                    

Informazioni di Base sull'Estensione

Nome Opening Chooser Opening Chooser
ID jflaiafkhoeaioflgdfflipkbnhmngie
URL Ufficiale https://chromewebstore.google.com/detail/opening-chooser/jflaiafkhoeaioflgdfflipkbnhmngie
Descrizione Based on the first few chess moves, chooses a random opening for you to play
Dimensione del File 130 KB
Conteggio Installazioni 289
Versione Corrente 1.0
Ultimo Aggiornamento 2021-01-26
Data di Pubblicazione 2021-01-26
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore usama8800
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Opening Chooser",
    "version": "1.0",
    "description": "Based on the first few chess moves, chooses a random opening for you to play",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "css": [
                "lichess.org.css"
            ],
            "js": [
                "chess.js",
                "eco.js",
                "jquery.min.js",
                "lichess.org.js"
            ]
        }
    ]
}