Two-Line Eval Bar for Chess.com

This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!

什麼是Two-Line Eval Bar for Chess.com?

Two-Line Eval Bar for Chess.com是由boring person開發的Chrome擴展程式,該擴展的主要功能是“This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!”。

擴展截圖

screenshot

下載Two-Line Eval Bar for Chess.com擴展crx文件

下載Two-Line Eval Bar for Chess.com擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        USAGE NOTES:

Whenever your webpage loads, the analysis bar should reload and buffer - this indicates that the Two-Line Eval is active. You may have to re-toggle the extension on-off-on to ensure it is working. By default, the extension is turned OFF whenever you load into a page, so even if you had toggled it "ON" previously, you will have to toggle it "ON-OFF-ON" again to restart the Two-Line Evaluation.

Depending on the side whose turn it is to move, the bar will load a slightly darker/lighter shaded section for each side, which represents the difference in evaluation between playing the best move and the second-best move. It may take some getting used to, but is fairly intuitive. 

The best use-case for this extension is for following classical chess, especially where a high-level player may have to make multiple only-moves in a row in a given position.                    

擴展基本資訊

名稱 Two-Line Eval Bar for Chess.com Two-Line Eval Bar for Chess.com
ID efmjcnaiddbchfhiklfcaogjeilcnpoc
官方網址 https://chromewebstore.google.com/detail/two-line-eval-bar-for-che/efmjcnaiddbchfhiklfcaogjeilcnpoc
簡介 This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!
檔案大小 28.5 KB
安裝次數 51
目前版本 0.1.0
更新時間 2024-01-22
上架時間 2023-08-14
開發者 boring person
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://www.reddit.com/message/compose/?to=BKtheInfamous
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Two-Line Eval Bar for Chess.com",
    "description": "This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!",
    "version": "0.1.0",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.js"
            ],
            "matches": [
                "https:\/\/www.chess.com\/events\/*",
                "https:\/\/www.chess.com\/game\/live\/*",
                "https:\/\/www.chess.com\/*",
                "https:\/\/www.chess.com\/analysis?tab=analysis",
                "https:\/\/www.chess.com\/analysis",
                "https:\/\/www.chess.com\/analysis\/game\/live\/*"
            ]
        }
    ]
}