Lichess Opponent Form
This extension shows live performance, legend and last 8 games of your lichess.org game opponents.
Lichess Opponent Form란 무엇입니까?
Lichess Opponent Form은(는) Dmitry Y에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows live performance, legend and last 8 games of your lichess.org game opponents."입니다.
확장 프로그램 스크린샷
Lichess Opponent Form 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension shows live performance, legend and last 8 games of your lichess.org game opponent. The information is presented in the current Chrome tab without any time and effort-consuming redirections. Small popup window will present average performance and a list of recent games of your opponent, including their opponents' names and ratings, pieces colors, game results and the rating changes. The information is clickable and navigates to the recent games and players' profiles. * May be useful to make a preliminary opinion about your opponent's strength and current form in fast blitz games. * Helps to recognize and avoid users with inadequate chess rating. * Is handy to look into the current situation and events in Arena tournaments, look for winning series. * Entertains with useful statistics while waiting for the opponent's move. More features to come.
확장 프로그램 기본 정보
이름 | Lichess Opponent Form |
ID | lipplpkgbnhdfdchoibgafjdblpjdkpi |
공식 URL | https://chromewebstore.google.com/detail/lichess-opponent-form/lipplpkgbnhdfdchoibgafjdblpjdkpi |
설명 | This extension shows live performance, legend and last 8 games of your lichess.org game opponents. |
파일 크기 | 16.89 KB |
설치 횟수 | 251 |
현재 버전 | 0.2.6 |
최근 업데이트 | 2022-04-12 |
출시 날짜 | 2021-08-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Dmitry Y |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lichess Opponent Form", "version": "0.2.6", "manifest_version": 3, "host_permissions": [ "http:\/\/localhost:8080\/" ], "description": "This extension shows live performance, legend and last 8 games of your lichess.org game opponents.", "content_scripts": [ { "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_title": "Lichess Opponent Form", "default_popup": "popup.html" }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |