Chess Move Say
Reads chess move names aloud after moves are played.
Chess Move Say là gì?
Chess Move Say là một tiện ích mở rộng Chrome được phát triển bởi Advait Shinde, và tính năng chính của nó là "Reads chess move names aloud after moves are played.".
Ả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 Chess Move Say
Tải xuống các tệp mở rộng Chess Move Say 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
Chess Move Say ============== Chess Move Say will read aloud chess moves played on Lichess.org. Chess Move Say is open source. Please contribute at: https://gitlab.com/advait3000/chess-move-say
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bffngaamkkngdgfojfpahbhmfodpbbho |
URL Chính Thức | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
Mô tả | Reads chess move names aloud after moves are played. |
Kích Thước Tệp | 1.73 MB |
Số Lần Cài Đặt | 165 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-11-22 |
Ngày Phát Hành | 2019-11-22 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Advait Shinde |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gitlab.com/advait3000/chess-move-say |
URL Trang Trợ Giúp | https://gitlab.com/advait3000/chess-move-say/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Reads chess move names aloud after moves are played.", "version": "1.0", "name": "Chess Move Say", "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "icons": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png", "256": "icon-256.png", "512": "icon-512.png" }, "browser_action": { "default_icon": { "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png", "256": "icon-256.png", "512": "icon-512.png" } }, "permissions": [ "declarativeContent", "storage", "https:\/\/lichess.org\/*" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "run_at": "document_end", "js": [ "cs.bundle.js" ] } ], "web_accessible_resources": [ "direct_script.bundle.js", "*.wav" ] } |