Chess Bot
This extension implements a bot using Stockfish
Apa itu Chess Bot?
Chess Bot adalah ekstensi Chrome yang dikembangkan oleh andyhsyu, dan fitur utamanya adalah "This extension implements a bot using Stockfish".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chess Bot
Unduh file ekstensi Chess Bot dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | lohcfjmdomblangndimbjfecoapohjlb |
URL Resmi | https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb |
Deskripsi | This extension implements a bot using Stockfish |
Ukuran File | 322 KB |
Jumlah Instalasi | 5,000 |
Versi Saat Ini | 1.11 |
Terakhir Diperbarui | 2016-02-26 |
Tanggal Publikasi | 2016-02-26 |
Penilaian | 1.52/5 Total 33 Penilaian |
Pengembang | andyhsyu |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |