Lichess Live Analysis Engine

Adds live analysis board for post-mortem analysis.

ما هو Lichess Live Analysis Engine؟

Lichess Live Analysis Engine هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Adds live analysis board for post-mortem analysis.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Lichess Live Analysis Engine

قم بتنزيل ملفات الامتداد Lichess Live Analysis Engine بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
}