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 |
官方網址 | 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" ] } |