Lichess Speaker
Lichess clock and moves speaker
Что такое Lichess Speaker?
Lichess Speaker - это расширение Chrome, разработанное maciej.caderek, и его основная функция - "Lichess clock and moves speaker".
Снимки экрана расширения
Скачать файл CRX расширения Lichess Speaker
Скачайте файлы расширений Lichess Speaker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Lichess extension that uses voice synthesis to * remind you of the remaining time during the chess game, * remind you to move after specified time, * start the countdown when you are very low on time, * read the moves from the chess notation. You can chose from many different voices (different languages)! You can customize your alerts for each time control! You can play blindfolded!
Основная информация о расширении
Название | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
Официальный URL | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Описание | Lichess clock and moves speaker |
Размер файла | 227 KB |
Количество установок | 104 |
Текущая Версия | 1.4 |
Последнее Обновление | 2021-09-14 |
Дата публикации | 2021-09-06 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | maciej.caderek |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/caderek/lichess-speaker |
URL страницы помощи | https://github.com/caderek/lichess-speaker/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lichess Speaker", "description": "Lichess clock and moves speaker", "version": "1.4", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting" ], "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "\/images\/ico16.png", "32": "\/images\/ico32.png", "48": "\/images\/ico48.png", "96": "\/images\/ico96.png", "128": "\/images\/ico128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "content-script.js" ] } ], "icons": { "16": "\/images\/ico16.png", "32": "\/images\/ico32.png", "48": "\/images\/ico48.png", "96": "\/images\/ico96.png", "128": "\/images\/ico128.png" } } |