Chess Bot
This extension implements a bot using Stockfish
Cos'è Chess Bot?
Chess Bot è un'estensione di Chrome sviluppata da andyhsyu, e la sua funzione principale è "This extension implements a bot using Stockfish".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chess Bot
Scarica i file di estensione Chess Bot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | lohcfjmdomblangndimbjfecoapohjlb |
| URL Ufficiale | https://chrome.google.com/webstore/detail/chess-bot/lohcfjmdomblangndimbjfecoapohjlb |
| Descrizione | This extension implements a bot using Stockfish |
| Dimensione del File | 322 KB |
| Conteggio Installazioni | 5,000 |
| Versione Corrente | 1.11 |
| Ultimo Aggiornamento | 2016-02-26 |
| Data di Pubblicazione | 2016-02-26 |
| Valutazione | 1.52/5 Totale 33 Valutazioni |
| Sviluppatore | andyhsyu |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |