Bobby
Shows users the best moves in a chess position
Cos'è Bobby?
Bobby è un'estensione di Chrome sviluppata da erichongdev, e la sua funzione principale è "Shows users the best moves in a chess position".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bobby
Scarica i file di estensione Bobby 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
Channel your inner grandmaster with real-time move suggestions from Bobby. Challenge your friends to a game over Chess.com and leave them astonished at how quickly you demolish them. The top 3 moves in every position are displayed in the top right of the window along with the evaluation for each move. Only supports WebSocket connection and not long polling. Note: Using Bobby in rated chess games will most likely result in account suspension and is not recommended.
Informazioni di Base sull'Estensione
Nome | |
ID | jbkljccbmlidfglkkgdbcoalnnielepl |
URL Ufficiale | https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl |
Descrizione | Shows users the best moves in a chess position |
Dimensione del File | 396 KB |
Conteggio Installazioni | 512 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-03-08 |
Data di Pubblicazione | 2021-03-08 |
Valutazione | 4.67/5 Totale 3 Valutazioni |
Sviluppatore | erichongdev |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bobby", "version": "1.0", "manifest_version": 2, "description": "Shows users the best moves in a chess position", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*" ], "js": [ "js\/content.js", "js\/intercept.js" ], "run_at": "document_start" } ], "browser_action": { "default_title": "Bobby" }, "icons": { "16": "png\/bobby16.png", "48": "png\/bobby48.png", "128": "png\/bobby128.png" }, "web_accessible_resources": [ "js\/stockfish\/stockfish.js", "js\/background.js", "js\/intercept.js" ] } |