GM Cheems
Chess.com and Lichess assistant
GM Cheems란 무엇입니까?
GM Cheems은(는) http://gmcheems.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chess.com and Lichess assistant"입니다.
확장 프로그램 스크린샷
GM Cheems 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
GM Cheems helps you improve your chess skills by providing insight, hints and tips in real-time. Changelog ------------------ 0.11.0 - January 22, 2023 Added option to auto-play from a combination of book and engine movies Draw opening book move arrows alongside engine move arrows Chess board that is shown when hovering over a line will now stay in place as you move your cursor over each move Split up the Gameplay options into three sub-menus 0.10.0 - December 24, 2022 Opening Books can now be imported and used during analysis! 🚀 Moves are now shown in SAN notation 0.9.0 - November 19, 2022 Added support for puzzle mode on Chess.com Added option to choose how many lines to analyze Added option to choose which line to draw arrows for Fixed a bug where some options weren't being applied correctly
확장 프로그램 기본 정보
이름 | |
ID | bmkmigdaklnhklmiialljbpjiedmnifh |
공식 URL | https://chrome.google.com/webstore/detail/gm-cheems/bmkmigdaklnhklmiialljbpjiedmnifh |
설명 | Chess.com and Lichess assistant |
파일 크기 | 1.44 MB |
설치 횟수 | 662 |
현재 버전 | 0.11.4 |
최근 업데이트 | 2023-05-17 |
출시 날짜 | 2022-08-02 |
평점 | 3.86/5 총 7 개의 평점 |
개발자 | http://gmcheems.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://www.gmcheems.com/ |
도움말 페이지 URL | https://gmcheems.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Chess.com and Lichess assistant", "version": "0.11.4", "name": "GM Cheems", "manifest_version": 3, "action": [], "background": { "service_worker": "background-wrapper.js" }, "icons": { "128": "cheems_128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "gmcContent.bundle.js" ] }, { "run_at": "document_idle", "matches": [ "https:\/\/*.chess.com\/*" ], "js": [ "gmcContent.bundle.js" ] }, { "run_at": "document_idle", "matches": [ "https:\/\/lichess.org\/*", "https:\/\/*.chess.com\/*" ], "js": [ "contentApp.bundle.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "web_accessible_resources": [ { "resources": [ "pages\/opening-book-import.html", "pages\/assets\/opening-book-import.bundle.js", "pages\/st11.html", "pages\/assets\/st11.wasm", "pages\/assets\/st11.js", "pages\/assets\/st11-proc.bundle.js" ], "matches": [ "https:\/\/lichess.org\/*", "https:\/\/*.chess.com\/*" ], "use_dynamic_url": true } ], "sandbox": { "pages": [ "pages\/st11.html", "pages\/opening-book-import.html" ] }, "permissions": [ "storage" ] } |