PawnGun

Live Analysis for Lichess.org Games

Что такое PawnGun?

PawnGun - это расширение Chrome, разработанное PawnGun, и его основная функция - "Live Analysis for Lichess.org Games".

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

screenshot

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

Скачайте файлы расширений PawnGun в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension has the following features:

* Allows you to view LIVE analysis while you are watching or streaming games being played live in that moment.
* This extension DOES NOT suggest good moves, it only shows how bad or good is each side according to a chess engine Analysis.
* Works only for Lichess.org ... for now.
* Does not support Chess960 variant ... for now.

* You should use this extension only for educational purposes.

I am not affiliated in any way with lichess or chess.com.                    

Основная информация о расширении

Название PawnGun PawnGun
ID jbabllibbfajahdjapeiphjdiencjame
Официальный URL https://chromewebstore.google.com/detail/pawngun/jbabllibbfajahdjapeiphjdiencjame
Описание Live Analysis for Lichess.org Games
Размер файла 102 KB
Количество установок 82
Текущая Версия 0.1
Последнее Обновление 2020-12-26
Дата публикации 2020-12-21
Рейтинг 3.00/5 Всего 2 оценок
Разработчик PawnGun
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.thapawngun.live
URL страницы помощи http://www.thapawngun.live
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PawnGun",
    "description": "Live Analysis for Lichess.org Games",
    "version": "0.1",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "chess.js",
                "content.js",
                "lozza.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    }
}