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ファイルをダウンロード

Lichess Live Analysis Engine拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
}