Lichess Speaker
Lichess clock and moves speaker
O que é Lichess Speaker?
Lichess Speaker é uma extensão do Chrome desenvolvida por maciej.caderek, e sua principal característica é "Lichess clock and moves speaker".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Lichess Speaker
Baixe arquivos de extensão Lichess Speaker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
URL Oficial | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Descrição | Lichess clock and moves speaker |
Tamanho do Arquivo | 227 KB |
Contagem de Instalações | 104 |
Versão Atual | 1.4 |
Última Atualização | 2021-09-14 |
Data de Publicação | 2021-09-06 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | maciej.caderek |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/caderek/lichess-speaker |
URL da Página de Ajuda | https://github.com/caderek/lichess-speaker/issues |
Idiomas Suportados | 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" } } |