Lichess Speaker
Lichess clock and moves speaker
Wat is Lichess Speaker?
Lichess Speaker is een Chrome-extensie ontwikkeld door maciej.caderek, en de belangrijkste functie is "Lichess clock and moves speaker".
Extensie Screenshots
Download het CRX-bestand van de extensie Lichess Speaker
Download Lichess Speaker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
Officiële URL | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Beschrijving | Lichess clock and moves speaker |
Bestandsgrootte | 227 KB |
Aantal Installaties | 104 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2021-09-14 |
Publicatiedatum | 2021-09-06 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | maciej.caderek |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/caderek/lichess-speaker |
Help Pagina-URL | https://github.com/caderek/lichess-speaker/issues |
Ondersteunde Talen | 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" } } |