Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Chess Assistant là gì?
Chess Assistant là một tiện ích mở rộng Chrome được phát triển bởi Branimir Klarić, và tính năng chính của nó là "Chess Assistant provides chess hints and analysis on chess.com".
Ả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 Assistant
Tải xuống các tệp mở rộng Chess Assistant 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
Features: ✓ Show attackers for each square ✓ Highlight losing and winning trades ✓ Preview your next move ✓ Visualize entire attack lines Works on all chess.com boards, including live games, bot games, puzzles and more. Comes with a free 30-day trial. Receive unlimited access for a one-time payment. Feel free to leave any feedback you might have, I would be happy to hear it.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
URL Chính Thức | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
Mô tả | Chess Assistant provides chess hints and analysis on chess.com |
Kích Thước Tệp | 153 KB |
Số Lần Cài Đặt | 517 |
Phiên Bản Hiện Tại | 0.2.1 |
Cập Nhật Lần Cuối | 2023-09-29 |
Ngày Phát Hành | 2023-07-10 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Branimir Klarić |
[email protected] | |
Loại Thanh Toán | in_app |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chess Assistant", "description": "Chess Assistant provides chess hints and analysis on chess.com", "version": "0.2.1", "icons": { "192": "icon.png" }, "action": { "default_icon": { "192": "icon.png" }, "default_title": "Chess Assistant" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.chess.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.chess.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false } } |