Lichess Speaker
Lichess clock and moves speaker
Τι είναι το Lichess Speaker;
Το Lichess Speaker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον maciej.caderek, και η κύρια λειτουργία του είναι "Lichess clock and moves speaker".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Lichess Speaker
Λήψη αρχείων επέκτασης Lichess Speaker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
Επίσημο URL | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Περιγραφή | Lichess clock and moves speaker |
Μέγεθος Αρχείου | 227 KB |
Αριθμός Εγκαταστάσεων | 104 |
Τρέχουσα Έκδοση | 1.4 |
Τελευταία Ενημέρωση | 2021-09-14 |
Ημερομηνία Δημοσίευσης | 2021-09-06 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | maciej.caderek |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/caderek/lichess-speaker |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/caderek/lichess-speaker/issues |
Υποστηριζόμενες Γλώσσες | 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" } } |