Chess Move Say

Reads chess move names aloud after moves are played.

Что такое Chess Move Say?

Chess Move Say - это расширение Chrome, разработанное Advait Shinde, и его основная функция - "Reads chess move names aloud after moves are played.".

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

screenshot

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

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

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

                        Chess Move Say
==============

Chess Move Say will read aloud chess moves played on Lichess.org.

Chess Move Say is open source. Please contribute at:
https://gitlab.com/advait3000/chess-move-say                    

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

Название Chess Move Say Chess Move Say
ID bffngaamkkngdgfojfpahbhmfodpbbho
Официальный URL https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho
Описание Reads chess move names aloud after moves are played.
Размер файла 1.73 MB
Количество установок 165
Текущая Версия 1.0
Последнее Обновление 2019-11-22
Дата публикации 2019-11-22
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Advait Shinde
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://gitlab.com/advait3000/chess-move-say
URL страницы помощи https://gitlab.com/advait3000/chess-move-say/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Reads chess move names aloud after moves are played.",
    "version": "1.0",
    "name": "Chess Move Say",
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png",
        "256": "icon-256.png",
        "512": "icon-512.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icon-32.png",
            "64": "icon-64.png",
            "128": "icon-128.png",
            "256": "icon-256.png",
            "512": "icon-512.png"
        }
    },
    "permissions": [
        "declarativeContent",
        "storage",
        "https:\/\/lichess.org\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "run_at": "document_end",
            "js": [
                "cs.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "direct_script.bundle.js",
        "*.wav"
    ]
}