ChessVanced
Free Game Review for Chess.com and Lichess
ChessVanced란 무엇입니까?
ChessVanced은(는) urosmijajlovic43에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Free Game Review for Chess.com and Lichess"입니다.
확장 프로그램 스크린샷
ChessVanced 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
ChessVanced is a tool for free game review of chess games, while you play your game on Chess.com or Lichess, the extension will analyze the game in the background, and after the game is finished you may press "Free Game Review" button to be prompted to chessvanced.com where you will view your game review
확장 프로그램 기본 정보
이름 | ChessVanced |
ID | ammcjghngpnnpibfnojlnmeghcmcgdib |
공식 URL | https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib |
설명 | Free Game Review for Chess.com and Lichess |
파일 크기 | 222 KB |
설치 횟수 | 5,095 |
현재 버전 | 3.0.0 |
최근 업데이트 | 2023-09-19 |
출시 날짜 | 2023-08-31 |
평점 | 3.88/5 총 8 개의 평점 |
개발자 | urosmijajlovic43 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://chessvanced.com/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChessVanced", "version": "3.0.0", "description": "Free Game Review for Chess.com and Lichess", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "host_permissions": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ], "web_accessible_resources": [ { "resources": [ "contentScript.js" ], "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ], "js": [ "contentScriptWrapper.js" ], "run_at": "document_start" } ], "background": { "type": "module", "service_worker": "backgroundScript.js" }, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" }, "permissions": [ "storage", "tabs", "offscreen" ], "externally_connectable": { "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ] } } |