Chess.com Voice Commentary (improved)

Hear chess moves and annotation spoken as they are played on Chess.com.

Что такое Chess.com Voice Commentary (improved)?

Chess.com Voice Commentary (improved) - это расширение Chrome, разработанное helloray504, и его основная функция - "Hear chess moves and annotation spoken as they are played on Chess.com.".

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

screenshot

Скачать файл CRX расширения Chess.com Voice Commentary (improved)

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

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

                        Note from the publisher: Hi everyone, as you might have found, the 
Chess.com Voice Commentary extension doesn't work and hasn't been updated for some time. I made some fixes to get it working, sharing it here so more people can benefit.

Have a suggestion? Send a pull request along! Source code available here: https://github.com/rctay/chesscom-voice-deux

Have an issue? https://github.com/rctay/chesscom-voice-deux/issues

I do not claim any copyright, all copyright (eg. code, sounds) belong to Chess.com.

Release history:
1.0.0: initial release
1.0.1: use store icon in extension as well                    

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

Название Chess.com Voice Commentary (improved) Chess.com Voice Commentary (improved)
ID egkebhhogppokoapdkjmbddeagahoifp
Официальный URL https://chromewebstore.google.com/detail/chesscom-voice-commentary/egkebhhogppokoapdkjmbddeagahoifp
Описание Hear chess moves and annotation spoken as they are played on Chess.com.
Размер файла 16.16 MB
Количество установок 570
Текущая Версия 1.0.1
Последнее Обновление 2021-05-31
Дата публикации 2021-05-25
Рейтинг 4.00/5 Всего 5 оценок
Разработчик helloray504
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/rctay/chesscom-voice-deux
URL страницы помощи https://github.com/rctay/chesscom-voice-deux/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.bundle.js"
            ],
            "matches": [
                "https:\/\/www.chess.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Hear chess moves and annotation spoken as they are played on Chess.com.",
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "name": "Chess.com Voice Commentary (improved)",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "version": "1.0.1",
    "web_accessible_resources": [
        "sounds\/*"
    ]
}