Free Chess Analysis
Analyze your chess.com games on lichess for free.
Free Chess Analysis란 무엇입니까?
Free Chess Analysis은(는) imlokesh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Analyze your chess.com games on lichess for free."입니다.
확장 프로그램 스크린샷
Free Chess Analysis 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This chrome extension will help you analyze your chess.com games on lichess. Just click the icon in your extension bar when you're on a chess.com game and a new lichess tab will open with your game. How It Works: - User clicks the extension icon when on a page like `chess.com/game/live/*` - The extension gets the pgn from chess.com share option. - The extension creates a new tab with url `lichess.org/paste` and imports your game. - The extension will automatically turn on local analysis and flip the board if you were black. Suggestions I welcome suggestions and bug reports. Please open an issue on github if you would like to suggest something.
확장 프로그램 기본 정보
이름 | Free Chess Analysis |
ID | fkakfklkhmjkkehkjchemdgeoldekdml |
공식 URL | https://chromewebstore.google.com/detail/free-chess-analysis/fkakfklkhmjkkehkjchemdgeoldekdml |
설명 | Analyze your chess.com games on lichess for free. |
파일 크기 | 290 KB |
설치 횟수 | 1,766 |
현재 버전 | 0.0.5 |
최근 업데이트 | 2024-02-20 |
출시 날짜 | 2023-03-07 |
평점 | 5.00/5 총 7 개의 평점 |
개발자 | imlokesh |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/imlokesh/free-chess-analysis |
도움말 페이지 URL | https://github.com/imlokesh/free-chess-analysis |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Free Chess Analysis", "description": "Analyze your chess.com games on lichess for free. ", "version": "0.0.5", "icons": { "64": "img\/64.png", "128": "img\/128.png", "512": "img\/512.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "declarativeContent", "activeTab", "scripting" ], "host_permissions": [ "https:\/\/www.chess.com\/*", "https:\/\/lichess.org\/*" ], "action": { "default_title": "Analyze on Lichess", "default_icon": { "16": "img\/16.png", "32": "img\/32.png", "48": "img\/48.png", "64": "img\/64.png", "128": "img\/128.png", "512": "img\/512.png" } } } |