ChessVanced
Free Game Review for Chess.com and Lichess
Τι είναι το ChessVanced;
Το ChessVanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον urosmijajlovic43, και η κύρια λειτουργία του είναι "Free Game Review for Chess.com and Lichess".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChessVanced
Λήψη αρχείων επέκτασης ChessVanced σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
ChessVanced is a tool for free game review of chess games, while you play your game on Chess.com or Lichess, the extension will analyze the game in the background, and after the game is finished you may press "Free Game Review" button to be prompted to chessvanced.com where you will view your game review
Βασικές Πληροφορίες Επέκτασης
Όνομα | ChessVanced |
ID | ammcjghngpnnpibfnojlnmeghcmcgdib |
Επίσημο URL | https://chromewebstore.google.com/detail/chessvanced/ammcjghngpnnpibfnojlnmeghcmcgdib |
Περιγραφή | Free Game Review for Chess.com and Lichess |
Μέγεθος Αρχείου | 222 KB |
Αριθμός Εγκαταστάσεων | 5,095 |
Τρέχουσα Έκδοση | 3.0.0 |
Τελευταία Ενημέρωση | 2023-09-19 |
Ημερομηνία Δημοσίευσης | 2023-08-31 |
Αξιολόγηση | 3.88/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | urosmijajlovic43 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://chessvanced.com/ |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChessVanced", "version": "3.0.0", "description": "Free Game Review for Chess.com and Lichess", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "host_permissions": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ], "web_accessible_resources": [ { "resources": [ "contentScript.js" ], "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ], "js": [ "contentScriptWrapper.js" ], "run_at": "document_start" } ], "background": { "type": "module", "service_worker": "backgroundScript.js" }, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" }, "permissions": [ "storage", "tabs", "offscreen" ], "externally_connectable": { "matches": [ "*:\/\/*.chess.com\/*", "*:\/\/*.lichess.org\/*", "*:\/\/*.chessvanced.com\/*" ] } } |