Chess.com to Lichess Import
Allows users to import Chess.com games into Lichess with one click
Chess.com to Lichess Import란 무엇입니까?
Chess.com to Lichess Import은(는) 17victork에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows users to import Chess.com games into Lichess with one click"입니다.
확장 프로그램 스크린샷
Chess.com to Lichess Import 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🚀 One-click import your chess.com games to lichess.org! 🎮
확장 프로그램 기본 정보
이름 | Chess.com to Lichess Import |
ID | jblnpdempinkonbjejolagghdofaipjf |
공식 URL | https://chromewebstore.google.com/detail/chesscom-to-lichess-impor/jblnpdempinkonbjejolagghdofaipjf |
설명 | Allows users to import Chess.com games into Lichess with one click |
파일 크기 | 3.34 MB |
설치 횟수 | 447 |
현재 버전 | 0.80 |
최근 업데이트 | 2024-02-24 |
출시 날짜 | 2021-06-02 |
평점 | 3.00/5 총 6 개의 평점 |
개발자 | 17victork |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/WojtekTB/Chesscom-to-lichess-games |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess.com to Lichess Import", "description": "Allows users to import Chess.com games into Lichess with one click", "version": "0.80", "icons": { "48": "logo48.png", "128": "logo128.png" }, "action": { "default_popup": ".\/donation.html" }, "permissions": [ "storage", "activeTab" ], "host_permissions": [ "https:\/\/lichess.org\/*" ], "background": { "service_worker": ".\/scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "table.html", "scripts\/*", "styles\/*" ], "matches": [ "https:\/\/www.chess.com\/*", "https:\/\/lichess.org\/*" ], "use_dyanmics_url": true } ], "content_scripts": [ { "matches": [ "https:\/\/www.chess.com\/*", "https:\/\/lichess.org\/*" ], "js": [ ".\/scripts\/ratingWindow.js", ".\/scripts\/injectHtmlButtonToPage.js", ".\/scripts\/lichessPressAnalysis.js" ] } ], "manifest_version": 3 } |