Chess Assistant
Chess Assistant provides chess hints and analysis on chess.com
Chess Assistantคืออะไร?
Chess Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Branimir Klarić และคุณลักษณะหลักของมันคือ "Chess Assistant provides chess hints and analysis on chess.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Chess Assistant
ดาวน์โหลดไฟล์ส่วนขยาย Chess Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Chess Assistant |
ID | gpgnadojeplpnonnckfbpfpedoinfcln |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chess-assistant/gpgnadojeplpnonnckfbpfpedoinfcln |
คำอธิบาย | Chess Assistant provides chess hints and analysis on chess.com |
ขนาดไฟล์ | 153 KB |
จำนวนการติดตั้ง | 517 |
เวอร์ชันปัจจุบัน | 0.2.1 |
อัปเดตครั้งล่าสุด | 2023-09-29 |
วันที่เผยแพร่ | 2023-07-10 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Branimir Klarić |
อีเมล | [email protected] |
ประเภทการชำระเงิน | in_app |
ภาษาที่รองรับ | 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 } } |