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開發的Chrome擴展程式,該擴展的主要功能是“A Chess extension to determine best next move on chess.com”。

擴展截圖

screenshot
screenshot
screenshot

下載Chess.com Next Move擴展crx文件

下載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
官方網址 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": []
        }
    ]
}