Opening Chooser

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

Что такое Opening Chooser?

Opening Chooser - это расширение Chrome, разработанное usama8800, и его основная функция - "Based on the first few chess moves, chooses a random opening for you to play".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Opening Chooser

Скачайте файлы расширений Opening Chooser в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Opening Chooser Opening Chooser
ID jflaiafkhoeaioflgdfflipkbnhmngie
Официальный URL https://chromewebstore.google.com/detail/opening-chooser/jflaiafkhoeaioflgdfflipkbnhmngie
Описание Based on the first few chess moves, chooses a random opening for you to play
Размер файла 130 KB
Количество установок 289
Текущая Версия 1.0
Последнее Обновление 2021-01-26
Дата публикации 2021-01-26
Рейтинг 3.00/5 Всего 4 оценок
Разработчик usama8800
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}