Lichess Live Analysis Engine

Adds live analysis board for post-mortem analysis.

O que é Lichess Live Analysis Engine?

Lichess Live Analysis Engine é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Adds live analysis board for post-mortem analysis.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Lichess Live Analysis Engine

Baixe arquivos de extensão Lichess Live Analysis Engine no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Lichess Live Analysis Engine Lichess Live Analysis Engine
ID nbghhbfeikmnkhfbjkgcifhnkfacjdgk
URL Oficial https://chromewebstore.google.com/detail/lichess-live-analysis-eng/nbghhbfeikmnkhfbjkgcifhnkfacjdgk
Descrição Adds live analysis board for post-mortem analysis.
Tamanho do Arquivo 55.33 KB
Contagem de Instalações 504
Versão Atual 1.0
Última Atualização 2015-09-16
Data de Publicação 2015-09-16
Classificação 3.00/5 Total de 6 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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
}