Mephisto Chess Extension
Next best move analysis for your favorite chess websites
Mephisto Chess Extension란 무엇입니까?
Mephisto Chess Extension은(는) Alpine Web Extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Next best move analysis for your favorite chess websites"입니다.
확장 프로그램 스크린샷
Mephisto Chess Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |