Lichess Speaker
Lichess clock and moves speaker
Lichess Speaker là gì?
Lichess Speaker là một tiện ích mở rộng Chrome được phát triển bởi maciej.caderek, và tính năng chính của nó là "Lichess clock and moves speaker".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Lichess Speaker
Tải xuống các tệp mở rộng Lichess Speaker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kpdengkjmlndpmnlllipgdgkpdlcgndi |
URL Chính Thức | https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi |
Mô tả | Lichess clock and moves speaker |
Kích Thước Tệp | 227 KB |
Số Lần Cài Đặt | 104 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2021-09-14 |
Ngày Phát Hành | 2021-09-06 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | maciej.caderek |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/caderek/lichess-speaker |
URL Trang Trợ Giúp | https://github.com/caderek/lichess-speaker/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |