Bobby

Shows users the best moves in a chess position

Was ist Bobby?

Bobby ist eine Chrome-Erweiterung, die von erichongdev entwickelt wurde, und ihr Hauptmerkmal ist "Shows users the best moves in a chess position".

Erweiterungsscreenshots

screenshot
screenshot

Bobby-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bobby-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Bobby Bobby
ID jbkljccbmlidfglkkgdbcoalnnielepl
Offizielle URL https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl
Beschreibung Shows users the best moves in a chess position
Dateigröße 396 KB
Installationsanzahl 512
Aktuelle Version 1.0
Letztes Update 2021-03-08
Veröffentlichungsdatum 2021-03-08
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler erichongdev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}