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" ] } |