Chess Bot
This extension implements a bot using Stockfish
什么是Chess Bot?
Chess Bot是由andyhsyu开发的Chrome扩展程序,该扩展的主要功能是“This extension implements a bot using Stockfish”。
扩展截图
下载Chess Bot扩展crx文件
下载Chess Bot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chess bot for the popular chess website https://www.chess.com/.
Provides best move suggestions and highlighted tiles. Tested to beat opponents up to ~2000 Elo. 扩展基本信息
| 名称 | |
| ID | lohcfjmdomblangndimbjfecoapohjlb |
| 官方URL | https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb |
| 简介 | This extension implements a bot using Stockfish |
| 文件大小 | 322 KB |
| 安装次数 | 5,000 |
| 当前版本 | 1.11 |
| 更新时间 | 2016-02-26 |
| 上架时间 | 2016-02-26 |
| 评分 | 1.52/5 共33次评分 |
| 开发者 | andyhsyu |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Chess Bot",
"description": "This extension implements a bot using Stockfish",
"version": "1.11",
"browser_action": {
"default_icon": "img\/icon.png",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js\/background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*.chess.com\/*",
"https:\/\/*.chess.com\/*"
],
"js": [
"js\/bot.js"
]
}
],
"permissions": [
"http:\/\/*.chess.com\/*",
"activeTab"
],
"web_accessible_resources": [
"js\/inject.js",
"js\/simulatemouseclick.js",
"js\/stockfish.js"
]
} | |