Bobby

Shows users the best moves in a chess position

¿Qué es Bobby?

Bobby es una extensión de Chrome desarrollada por erichongdev, y su función principal es "Shows users the best moves in a chess position".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Bobby

Descarga archivos de extensión Bobby en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Bobby Bobby
ID jbkljccbmlidfglkkgdbcoalnnielepl
URL Oficial https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl
Descripción Shows users the best moves in a chess position
Tamaño del Archivo 396 KB
Cantidad de Instalaciones 512
Versión Actual 1.0
Última Actualización 2021-03-08
Fecha de Publicación 2021-03-08
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador erichongdev
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}