Lichess Speaker
Lichess clock and moves speaker
What is Lichess Speaker?
Lichess Speaker is a Chrome extension developed by maciej.caderek, and its main feature is "Lichess clock and moves speaker".
Extension Screenshots
Download Lichess Speaker Extension CRX File
Download Lichess Speaker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
Official URL | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Description | Lichess clock and moves speaker |
File Size | 227 KB |
Installation Count | 104 |
Current Version | 1.4 |
Last Updated | 2021-09-14 |
Publish Date | 2021-09-06 |
Rating | 5.00/5 Total 3 Ratings |
Developer | maciej.caderek |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/caderek/lichess-speaker |
Help Page URL | https://github.com/caderek/lichess-speaker/issues |
Supported Languages | 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" } } |