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 |
电子邮箱 | [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" ] } |