Bobby
Shows users the best moves in a chess position
Bobby là gì?
Bobby là một tiện ích mở rộng Chrome được phát triển bởi erichongdev, và tính năng chính của nó là "Shows users the best moves in a chess position".
Ả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 Bobby
Tải xuống các tệp mở rộng Bobby 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
Channel your inner grandmaster with real-time move suggestions from Bobby. Challenge your friends to a game over Chess.com and leave them astonished at how quickly you demolish them. The top 3 moves in every position are displayed in the top right of the window along with the evaluation for each move. Only supports WebSocket connection and not long polling. Note: Using Bobby in rated chess games will most likely result in account suspension and is not recommended.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jbkljccbmlidfglkkgdbcoalnnielepl |
URL Chính Thức | https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl |
Mô tả | Shows users the best moves in a chess position |
Kích Thước Tệp | 396 KB |
Số Lần Cài Đặt | 512 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2021-03-08 |
Ngày Phát Hành | 2021-03-08 |
Đánh Giá | 4.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | erichongdev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bobby", "version": "1.0", "manifest_version": 2, "description": "Shows users the best moves in a chess position", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*" ], "js": [ "js\/content.js", "js\/intercept.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "Bobby" }, "icons": { "16": "png\/bobby16.png", "48": "png\/bobby48.png", "128": "png\/bobby128.png" }, "web_accessible_resources": [ "js\/stockfish\/stockfish.js", "js\/background.js", "js\/intercept.js" ] } |