Two-Line Eval Bar for Chess.com
This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!
Τι είναι το Two-Line Eval Bar for Chess.com;
Το Two-Line Eval Bar for Chess.com είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον boring person, και η κύρια λειτουργία του είναι "This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Two-Line Eval Bar for Chess.com
Λήψη αρχείων επέκτασης Two-Line Eval Bar for Chess.com σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
USAGE NOTES: Whenever your webpage loads, the analysis bar should reload and buffer - this indicates that the Two-Line Eval is active. You may have to re-toggle the extension on-off-on to ensure it is working. By default, the extension is turned OFF whenever you load into a page, so even if you had toggled it "ON" previously, you will have to toggle it "ON-OFF-ON" again to restart the Two-Line Evaluation. Depending on the side whose turn it is to move, the bar will load a slightly darker/lighter shaded section for each side, which represents the difference in evaluation between playing the best move and the second-best move. It may take some getting used to, but is fairly intuitive. The best use-case for this extension is for following classical chess, especially where a high-level player may have to make multiple only-moves in a row in a given position.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Two-Line Eval Bar for Chess.com |
ID | efmjcnaiddbchfhiklfcaogjeilcnpoc |
Επίσημο URL | https://chromewebstore.google.com/detail/two-line-eval-bar-for-che/efmjcnaiddbchfhiklfcaogjeilcnpoc |
Περιγραφή | This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games! |
Μέγεθος Αρχείου | 28.5 KB |
Αριθμός Εγκαταστάσεων | 51 |
Τρέχουσα Έκδοση | 0.1.0 |
Τελευταία Ενημέρωση | 2024-01-22 |
Ημερομηνία Δημοσίευσης | 2023-08-14 |
Προγραμματιστής | boring person |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.reddit.com/message/compose/?to=BKtheInfamous |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Two-Line Eval Bar for Chess.com", "description": "This eval bar shows the difference between the best & second-best line on any move. Perfect for following intense, high-level games!", "version": "0.1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "contentScript.js" ], "matches": [ "https:\/\/www.chess.com\/events\/*", "https:\/\/www.chess.com\/game\/live\/*", "https:\/\/www.chess.com\/*", "https:\/\/www.chess.com\/analysis?tab=analysis", "https:\/\/www.chess.com\/analysis", "https:\/\/www.chess.com\/analysis\/game\/live\/*" ] } ] } |