Bobby
Shows users the best moves in a chess position
Τι είναι το Bobby;
Το Bobby είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον erichongdev, και η κύρια λειτουργία του είναι "Shows users the best moves in a chess position".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Bobby
Λήψη αρχείων επέκτασης Bobby σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | jbkljccbmlidfglkkgdbcoalnnielepl |
| Επίσημο URL | https://chrome.google.com/webstore/detail/bobby/jbkljccbmlidfglkkgdbcoalnnielepl |
| Περιγραφή | Shows users the best moves in a chess position |
| Μέγεθος Αρχείου | 396 KB |
| Αριθμός Εγκαταστάσεων | 512 |
| Τρέχουσα Έκδοση | 1.0 |
| Τελευταία Ενημέρωση | 2021-03-08 |
| Ημερομηνία Δημοσίευσης | 2021-03-08 |
| Αξιολόγηση | 4.67/5 Συνολικά 3 Αξιολογήσεις |
| Προγραμματιστής | erichongdev |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Υποστηριζόμενες Γλώσσες | 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"
]
} | |