Mephisto Chess Extension
Next best move analysis for your favorite chess websites
Mephisto Chess Extensionคืออะไร?
Mephisto Chess Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alpine Web Extensions และคุณลักษณะหลักของมันคือ "Next best move analysis for your favorite chess websites"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mephisto Chess Extension
ดาวน์โหลดไฟล์ส่วนขยาย Mephisto Chess Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Mephisto is a browser extension that enables realtime next best move analysis and autoplay on your favorite chess websites. Mephisto Chess Extension is the perfect tool to hone your chess skills, analyze your games and learn from your mistakes. With a click of a button, Mephisto analyzes your chess game and provides comprehensive information to elucidate the position. Mephisto is 100% free, open-source and collects zero user data. Features: - Full support for next best move analysis on Lichess and Chess.com - Full support for autoplay on Lichess and Chess.com - "Hand and Brain" training mode to help you spot the best move - A variety of piece and board themes to pick from
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ihpdlpgcjepplokoncjelcbbcedgnanp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/mephisto-chess-extension/ihpdlpgcjepplokoncjelcbbcedgnanp |
คำอธิบาย | Next best move analysis for your favorite chess websites |
ขนาดไฟล์ | 2.06 MB |
จำนวนการติดตั้ง | 4,021 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2022-08-13 |
วันที่เผยแพร่ | 2022-08-09 |
คะแนน | 4.44/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Alpine Web Extensions |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/AlexPetrusca/Mephisto |
URL หน้าช่วยเหลือ | https://github.com/AlexPetrusca/Mephisto/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/AlexPetrusca/Mephisto/wiki/Privacy-Policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mephisto Chess Extension", "description": "Next best move analysis for your favorite chess websites", "version": "1.0.1", "homepage_url": "https:\/\/github.com\/AlexPetrusca\/Mephisto", "author": "Alex Petrusca", "icons": { "16": "res\/icons\/icon16.png", "32": "res\/icons\/icon32.png", "48": "res\/icons\/icon48.png", "128": "res\/icons\/icon128.png" }, "action": { "default_icon": { "16": "res\/icons\/icon16.png", "32": "res\/icons\/icon32.png", "48": "res\/icons\/icon48.png", "128": "res\/icons\/icon128.png" }, "default_popup": "src\/popup\/popup.html", "options_page": "src\/options\/options.html" }, "permissions": [ "debugger" ], "background": { "service_worker": "src\/scripts\/background-script.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.chess.com\/*", "https:\/\/lichess.org\/*" ], "js": [ "src\/scripts\/content-script.js" ] } ], "default_locale": "en" } |