ChessVanced

Free Game Review for Chess.com and Lichess

什麼是ChessVanced?

ChessVanced是由urosmijajlovic43開發的Chrome擴展程式,該擴展的主要功能是“Free Game Review for Chess.com and Lichess”。

擴展截圖

screenshot
screenshot
screenshot

下載ChessVanced擴展crx文件

下載ChessVanced擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ChessVanced is a tool for free game review of chess games, while you play your game on Chess.com or Lichess, the extension will analyze the game in the background, and after the game is finished you may press "Free Game Review" button to be prompted to chessvanced.com where you will view your game review                    

擴展基本資訊

名稱 ChessVanced ChessVanced
ID ammcjghngpnnpibfnojlnmeghcmcgdib
官方網址 https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib
簡介 Free Game Review for Chess.com and Lichess
檔案大小 222 KB
安裝次數 5,095
目前版本 3.0.0
更新時間 2023-09-19
上架時間 2023-08-31
評分 3.88/5 共 8 次評分
開發者 urosmijajlovic43
電子郵箱 [email protected]
付費類型 free
擴展官網 https://chessvanced.com/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChessVanced",
    "version": "3.0.0",
    "description": "Free Game Review for Chess.com and Lichess",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "host_permissions": [
        "*:\/\/*.chess.com\/*",
        "*:\/\/*.lichess.org\/*",
        "*:\/\/*.chessvanced.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentScript.js"
            ],
            "matches": [
                "*:\/\/*.chess.com\/*",
                "*:\/\/*.lichess.org\/*",
                "*:\/\/*.chessvanced.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.chess.com\/*",
                "*:\/\/*.lichess.org\/*",
                "*:\/\/*.chessvanced.com\/*"
            ],
            "js": [
                "contentScriptWrapper.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "backgroundScript.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "permissions": [
        "storage",
        "tabs",
        "offscreen"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.chess.com\/*",
            "*:\/\/*.lichess.org\/*",
            "*:\/\/*.chessvanced.com\/*"
        ]
    }
}