Lichess Live Analysis Engine

Adds live analysis board for post-mortem analysis.

Lichess Live Analysis Engine란 무엇입니까?

Lichess Live Analysis Engine은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds live analysis board for post-mortem analysis."입니다.

확장 프로그램 스크린샷

screenshot

Lichess Live Analysis Engine 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Chrome extension will allow you to perform live chess engine analysis of your chess positions after the game. It has been created to compliment the chess evaluation on the LiChess site itself, and to cover those usage cases where the user would like to explore side lines and understand why certain moves work or don't work.

In order to use this extension simply click the "Analysis Board" button on a completed game and then click this extension's button, which in the top right of the browser window. An evaluation of the current position should appear shortly in the left sidebar under "Spectator Room."

Source for this extension and server available here: https://github.com/freefal67/lichess_live_engine                    

확장 프로그램 기본 정보

이름 Lichess Live Analysis Engine Lichess Live Analysis Engine
ID nbghhbfeikmnkhfbjkgcifhnkfacjdgk
공식 URL https://chromewebstore.google.com/detail/lichess-live-analysis-eng/nbghhbfeikmnkhfbjkgcifhnkfacjdgk
설명 Adds live analysis board for post-mortem analysis.
파일 크기 55.33 KB
설치 횟수 504
현재 버전 1.0
최근 업데이트 2015-09-16
출시 날짜 2015-09-16
평점 3.00/5 총 6 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lichess Live Analysis Engine",
    "version": "1.0",
    "description": "Adds live analysis board for post-mortem analysis.",
    "icons": {
        "19": "icon-19.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.lichess.org\/*"
            ],
            "js": [
                "chess.js",
                "jquery-2.1.4.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Lichess Live Analysis Engine"
    },
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 2
}