Bobby

Shows users the best moves in a chess position

Qu'est-ce que Bobby ?

Bobby est une extension Chrome développée par erichongdev, et sa fonction principale est "Shows users the best moves in a chess position".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Bobby

Téléchargez les fichiers d'extension Bobby au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Bobby Bobby
ID jbkljccbmlidfglkkgdbcoalnnielepl
URL Officiel https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl
Description Shows users the best moves in a chess position
Taille du Fichier 396 KB
Nombre d'Installations 512
Version Actuelle 1.0
Dernière Mise à Jour 2021-03-08
Date de Publication 2021-03-08
Évaluation 4.67/5 Total 3 Évaluations
Développeur erichongdev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}