Lichess Live Analysis Engine

Adds live analysis board for post-mortem analysis.

Lichess Live Analysis Engine là gì?

Lichess Live Analysis Engine là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Adds live analysis board for post-mortem analysis.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lichess Live Analysis Engine

Tải xuống các tệp mở rộng Lichess Live Analysis Engine dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lichess Live Analysis Engine Lichess Live Analysis Engine
ID nbghhbfeikmnkhfbjkgcifhnkfacjdgk
URL Chính Thức https://chromewebstore.google.com/detail/lichess-live-analysis-eng/nbghhbfeikmnkhfbjkgcifhnkfacjdgk
Mô tả Adds live analysis board for post-mortem analysis.
Kích Thước Tệp 55.33 KB
Số Lần Cài Đặt 504
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-09-16
Ngày Phát Hành 2015-09-16
Đánh Giá 3.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}