Bobby

Shows users the best moves in a chess position

Bobby क्या है?

Bobby erichongdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows users the best moves in a chess position"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bobby एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}