Chess.com Insights
Shows Win/Lose/Draw and average accuracy for players on chess.com
Τι είναι το Chess.com Insights;
Το Chess.com Insights είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον thieleju, και η κύρια λειτουργία του είναι "Shows Win/Lose/Draw and average accuracy for players on chess.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Chess.com Insights
Λήψη αρχείων επέκτασης Chess.com Insights σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension shows statistics for chess.com games. Use the icon in the top right corner to adjust the settings. - First three numbers are the wins/loses/draws of the player - Percentage in brackets is the average accuracy of the player - Accuracy is only available on reviewed games - Hover over the stats to see information how many games the average is based on https://github.com/thieleju/chess-com-insights
Βασικές Πληροφορίες Επέκτασης
Όνομα | Chess.com Insights |
ID | mobpnhbkmljienoleojnhbfhkhodpffe |
Επίσημο URL | https://chromewebstore.google.com/detail/chesscom-insights/mobpnhbkmljienoleojnhbfhkhodpffe |
Περιγραφή | Shows Win/Lose/Draw and average accuracy for players on chess.com |
Μέγεθος Αρχείου | 2.28 MB |
Αριθμός Εγκαταστάσεων | 612 |
Τρέχουσα Έκδοση | 2.5.1 |
Τελευταία Ενημέρωση | 2024-02-29 |
Ημερομηνία Δημοσίευσης | 2023-06-18 |
Αξιολόγηση | 5.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | thieleju |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/thieleju/chess-com-insights |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/thieleju/chess-com-insights |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chess.com Insights", "description": "Shows Win\/Lose\/Draw and average accuracy for players on chess.com", "author": "thieleju", "manifest_version": 3, "version": "2.5.1", "permissions": [ "activeTab", "scripting", "storage" ], "action": { "default_locale": "en", "default_title": "Chess.com Insights", "default_popup": "index.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "content_scripts": [ { "js": [ "assets\/insights.ts-loader-c0be3281.js" ], "matches": [ "https:\/\/*.chess.com\/play\/online*", "https:\/\/*.chess.com\/play\/online\/*", "https:\/\/*.chess.com\/game\/daily\/*", "https:\/\/*.chess.com\/game\/live\/*", "https:\/\/*.chess.com\/live\/game\/*", "https:\/\/*.chess.com\/analysis\/game\/live\/*" ] } ], "host_permissions": [ "https:\/\/*.chess.com\/*" ], "web_accessible_resources": [ { "matches": [ "https:\/\/*.chess.com\/*", "https:\/\/*.chess.com\/*", "https:\/\/*.chess.com\/*", "https:\/\/*.chess.com\/*", "https:\/\/*.chess.com\/*", "https:\/\/*.chess.com\/*" ], "resources": [ "assets\/settings-b0edff48.js", "assets\/insights.ts-6085b883.js" ], "use_dynamic_url": true } ] } |