Opening Chooser

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

Wat is Opening Chooser?

Opening Chooser is een Chrome-extensie ontwikkeld door usama8800, en de belangrijkste functie is "Based on the first few chess moves, chooses a random opening for you to play".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Opening Chooser

Download Opening Chooser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Opening Chooser Opening Chooser
ID jflaiafkhoeaioflgdfflipkbnhmngie
Officiële URL https://chromewebstore.google.com/detail/opening-chooser/jflaiafkhoeaioflgdfflipkbnhmngie
Beschrijving Based on the first few chess moves, chooses a random opening for you to play
Bestandsgrootte 130 KB
Aantal Installaties 289
Huidige Versie 1.0
Laatst Bijgewerkt 2021-01-26
Publicatiedatum 2021-01-26
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar usama8800
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}