Bobby
Shows users the best moves in a chess position
Bobby란 무엇입니까?
Bobby은(는) erichongdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows users the best moves in a chess position"입니다.
확장 프로그램 스크린샷
Bobby 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Channel your inner grandmaster with real-time move suggestions from Bobby. Challenge your friends to a game over Chess.com and leave them astonished at how quickly you demolish them. The top 3 moves in every position are displayed in the top right of the window along with the evaluation for each move. Only supports WebSocket connection and not long polling. Note: Using Bobby in rated chess games will most likely result in account suspension and is not recommended.
확장 프로그램 기본 정보
이름 | |
ID | jbkljccbmlidfglkkgdbcoalnnielepl |
공식 URL | https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl |
설명 | Shows users the best moves in a chess position |
파일 크기 | 396 KB |
설치 횟수 | 512 |
현재 버전 | 1.0 |
최근 업데이트 | 2021-03-08 |
출시 날짜 | 2021-03-08 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | erichongdev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bobby", "version": "1.0", "manifest_version": 2, "description": "Shows users the best moves in a chess position", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*" ], "js": [ "js\/content.js", "js\/intercept.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "Bobby" }, "icons": { "16": "png\/bobby16.png", "48": "png\/bobby48.png", "128": "png\/bobby128.png" }, "web_accessible_resources": [ "js\/stockfish\/stockfish.js", "js\/background.js", "js\/intercept.js" ] } |