Lichess Speaker
Lichess clock and moves speaker
Cos'è Lichess Speaker?
Lichess Speaker è un'estensione di Chrome sviluppata da maciej.caderek, e la sua funzione principale è "Lichess clock and moves speaker".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lichess Speaker
Scarica i file di estensione Lichess Speaker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
URL Ufficiale | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Descrizione | Lichess clock and moves speaker |
Dimensione del File | 227 KB |
Conteggio Installazioni | 104 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2021-09-14 |
Data di Pubblicazione | 2021-09-06 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | maciej.caderek |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/caderek/lichess-speaker |
URL della Pagina di Aiuto | https://github.com/caderek/lichess-speaker/issues |
Lingue Supportate | 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" } } |