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
官方URL 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\/*"
        ]
    }
}