Bobby

Shows users the best moves in a chess position

Что такое Bobby?

Bobby - это расширение Chrome, разработанное erichongdev, и его основная функция - "Shows users the best moves in a chess position".

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

screenshot
screenshot

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

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

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

                        Channel your inner grandmaster with real-time move suggestions from Bobby. Challenge your friends to a game over Chess.com and leave them astonished at how quickly you demolish them.

The top 3 moves in every position are displayed in the top right of the window along with the evaluation for each move.

Only supports WebSocket connection and not long polling.

Note: Using Bobby in rated chess games will most likely result in account suspension and is not recommended.                    

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

Название Bobby Bobby
ID jbkljccbmlidfglkkgdbcoalnnielepl
Официальный URL https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl
Описание Shows users the best moves in a chess position
Размер файла 396 KB
Количество установок 512
Текущая Версия 1.0
Последнее Обновление 2021-03-08
Дата публикации 2021-03-08
Рейтинг 4.67/5 Всего 3 оценок
Разработчик erichongdev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bobby",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Shows users the best moves in a chess position",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*"
            ],
            "js": [
                "js\/content.js",
                "js\/intercept.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "Bobby"
    },
    "icons": {
        "16": "png\/bobby16.png",
        "48": "png\/bobby48.png",
        "128": "png\/bobby128.png"
    },
    "web_accessible_resources": [
        "js\/stockfish\/stockfish.js",
        "js\/background.js",
        "js\/intercept.js"
    ]
}