ChessVanced

Free Game Review for Chess.com and Lichess

Что такое ChessVanced?

ChessVanced - это расширение Chrome, разработанное urosmijajlovic43, и его основная функция - "Free Game Review for Chess.com and Lichess".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения ChessVanced

Скачайте файлы расширений 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\/*"
        ]
    }
}