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ファイルをダウンロード
Bobby拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
| Eメール | [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"
]
} | |