Bobby

Shows users the best moves in a chess position

Wat is Bobby?

Bobby is een Chrome-extensie ontwikkeld door erichongdev, en de belangrijkste functie is "Shows users the best moves in a chess position".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Bobby

Download Bobby-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

                        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.                    

Basisinformatie over de Extensie

Naam Bobby Bobby
ID jbkljccbmlidfglkkgdbcoalnnielepl
Officiële URL https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl
Beschrijving Shows users the best moves in a chess position
Bestandsgrootte 396 KB
Aantal Installaties 512
Huidige Versie 1.0
Laatst Bijgewerkt 2021-03-08
Publicatiedatum 2021-03-08
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar erichongdev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}