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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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": []
        }
    ]
}