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