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