Chess.com Voice Commentary (simplified)
Reading chess moves.
Что такое Chess.com Voice Commentary (simplified)?
Chess.com Voice Commentary (simplified) - это расширение Chrome, разработанное weizubc, и его основная функция - "Reading chess moves.".
Снимки экрана расширения
Скачать файл CRX расширения Chess.com Voice Commentary (simplified)
Скачайте файлы расширений Chess.com Voice Commentary (simplified) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Previous voice commentary extensions for chess.com have broken for some reason. This is a simplified version that only reads new moves from 'board-layout-sidebar', so it is less likely to break in future, and easier to fix when it does. Source code at https://github.com/renshenw/chesscom-voice-simplified. "Piece Notation" in board settings must be "Text". Works for both human and computer opponents. All copyrights still go to chess.com.
Основная информация о расширении
Название | Chess.com Voice Commentary (simplified) |
ID | mjmamkihdmfkogidombgdaepnikajemc |
Официальный URL | https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc |
Описание | Reading chess moves. |
Размер файла | 869 KB |
Количество установок | 52 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-02-23 |
Дата публикации | 2023-02-22 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | weizubc |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess.com Voice Commentary (simplified)", "version": "1.0", "background": { "service_worker": "background.js" }, "description": "Reading chess moves.", "content_scripts": [ { "matches": [ "https:\/\/www.chess.com\/*" ], "js": [ "contentScript.js" ] } ], "icons": { "128": "icon-128.png" }, "web_accessible_resources": [ { "resources": [ "mp3\/*" ], "matches": [ "https:\/\/www.chess.com\/*" ] } ], "manifest_version": 3 } |