Chess.com Next Move

A Chess extension to determine best next move on chess.com

Chess.com Next Move क्या है?

Chess.com Next Move Albert Putra Purnama द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chess extension to determine best next move on chess.com"।

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

screenshot
screenshot
screenshot

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

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

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

                        Stockfish AI for chess.com

Figure out the best next move with a given board state in chess.com!

Go find a match, then select your piece color!

Demo here: https://youtu.be/pSSuKUllC3g

Have fun!                    

एक्सटेंशन की मूल जानकारी

नाम Chess.com Next Move Chess.com Next Move
ID ieaoeokfilgofofpdcehmgokenlnbdaa
आधिकारिक URL https://chrome.google.com/webstore/detail/chesscom-next-move/ieaoeokfilgofofpdcehmgokenlnbdaa
विवरण A Chess extension to determine best next move on chess.com
फ़ाइल का आकार 464 KB
स्थापना संख्या 2,000
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2021-03-15
प्रकाशन तिथि 2019-03-08
रेटिंग 4.04/5 कुल 27 रेटिंग्स
डेवलपर Albert Putra Purnama
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Chess extension to determine best next move on chess.com",
    "version": "0.0.2",
    "manifest_version": 3,
    "name": "Chess.com Next Move",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "knight16.png",
            "32": "knight32.png",
            "48": "knight48.png",
            "128": "knight128.png"
        }
    },
    "icons": {
        "16": "knight16.png",
        "32": "knight32.png",
        "48": "knight48.png",
        "128": "knight128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/chess.com\/*",
        "https:\/\/www.chess.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}