Chess.com Next Move

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

Chess.com Next Moveคืออะไร?

Chess.com Next Move เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Albert Putra Purnama และคุณลักษณะหลักของมันคือ "A Chess extension to determine best next move on chess.com"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chess.com Next Move

ดาวน์โหลดไฟล์ส่วนขยาย Chess.com Next Move ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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