Chess Bot

This extension implements a bot using Stockfish

Chess Bot란 무엇입니까?

Chess Bot은(는) andyhsyu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension implements a bot using Stockfish"입니다.

확장 프로그램 스크린샷

screenshot

Chess Bot 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Chess bot for the popular chess website https://www.chess.com/.
Provides best move suggestions and highlighted tiles. Tested to beat opponents up to ~2000 Elo.                    

확장 프로그램 기본 정보

이름 Chess Bot Chess Bot
ID lohcfjmdomblangndimbjfecoapohjlb
공식 URL https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb
설명 This extension implements a bot using Stockfish
파일 크기 322 KB
설치 횟수 5,000
현재 버전 1.11
최근 업데이트 2016-02-26
출시 날짜 2016-02-26
평점 1.52/5 총 33 개의 평점
개발자 andyhsyu
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess Bot",
    "description": "This extension implements a bot using Stockfish",
    "version": "1.11",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.chess.com\/*",
                "https:\/\/*.chess.com\/*"
            ],
            "js": [
                "js\/bot.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*.chess.com\/*",
        "activeTab"
    ],
    "web_accessible_resources": [
        "js\/inject.js",
        "js\/simulatemouseclick.js",
        "js\/stockfish.js"
    ]
}