Lichess Speaker
Lichess clock and moves speaker
Was ist Lichess Speaker?
Lichess Speaker ist eine Chrome-Erweiterung, die von maciej.caderek entwickelt wurde, und ihr Hauptmerkmal ist "Lichess clock and moves speaker".
Erweiterungsscreenshots
Lichess Speaker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Lichess Speaker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
Offizielle URL | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Beschreibung | Lichess clock and moves speaker |
Dateigröße | 227 KB |
Installationsanzahl | 104 |
Aktuelle Version | 1.4 |
Letztes Update | 2021-09-14 |
Veröffentlichungsdatum | 2021-09-06 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | maciej.caderek |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/caderek/lichess-speaker |
Hilfeseite URL | https://github.com/caderek/lichess-speaker/issues |
Unterstützte Sprachen | 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" } } |