Two-Line Eval Bar for Chess.com
This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!
Two-Line Eval Bar for Chess.com란 무엇입니까?
Two-Line Eval Bar for Chess.com은(는) boring person에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!"입니다.
확장 프로그램 스크린샷
Two-Line Eval Bar for Chess.com 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
USAGE NOTES: Whenever your webpage loads, the analysis bar should reload and buffer - this indicates that the Two-Line Eval is active. You may have to re-toggle the extension on-off-on to ensure it is working. By default, the extension is turned OFF whenever you load into a page, so even if you had toggled it "ON" previously, you will have to toggle it "ON-OFF-ON" again to restart the Two-Line Evaluation. Depending on the side whose turn it is to move, the bar will load a slightly darker/lighter shaded section for each side, which represents the difference in evaluation between playing the best move and the second-best move. It may take some getting used to, but is fairly intuitive. The best use-case for this extension is for following classical chess, especially where a high-level player may have to make multiple only-moves in a row in a given position.
확장 프로그램 기본 정보
이름 | Two-Line Eval Bar for Chess.com |
ID | efmjcnaiddbchfhiklfcaogjeilcnpoc |
공식 URL | https://chromewebstore.google.com/detail/two-line-eval-bar-for-che/efmjcnaiddbchfhiklfcaogjeilcnpoc |
설명 | This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games! |
파일 크기 | 28.5 KB |
설치 횟수 | 51 |
현재 버전 | 0.1.0 |
최근 업데이트 | 2024-01-22 |
출시 날짜 | 2023-08-14 |
개발자 | boring person |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://www.reddit.com/message/compose/?to=BKtheInfamous |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Two-Line Eval Bar for Chess.com", "description": "This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!", "version": "0.1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "contentScript.js" ], "matches": [ "https:\/\/www.chess.com\/events\/*", "https:\/\/www.chess.com\/game\/live\/*", "https:\/\/www.chess.com\/*", "https:\/\/www.chess.com\/analysis?tab=analysis", "https:\/\/www.chess.com\/analysis", "https:\/\/www.chess.com\/analysis\/game\/live\/*" ] } ] } |