Chess.com Voice Commentary (improved)
Hear chess moves and annotation spoken as they are played on Chess.com.
Τι είναι το Chess.com Voice Commentary (improved);
Το Chess.com Voice Commentary (improved) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον helloray504, και η κύρια λειτουργία του είναι "Hear chess moves and annotation spoken as they are played on Chess.com.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Chess.com Voice Commentary (improved)
Λήψη αρχείων επέκτασης Chess.com Voice Commentary (improved) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Note from the publisher: Hi everyone, as you might have found, the Chess.com Voice Commentary extension doesn't work and hasn't been updated for some time. I made some fixes to get it working, sharing it here so more people can benefit. Have a suggestion? Send a pull request along! Source code available here: https://github.com/rctay/chesscom-voice-deux Have an issue? https://github.com/rctay/chesscom-voice-deux/issues I do not claim any copyright, all copyright (eg. code, sounds) belong to Chess.com. Release history: 1.0.0: initial release 1.0.1: use store icon in extension as well
Βασικές Πληροφορίες Επέκτασης
Όνομα | Chess.com Voice Commentary (improved) |
ID | egkebhhogppokoapdkjmbddeagahoifp |
Επίσημο URL | https://chromewebstore.google.com/detail/chesscom-voice-commentary/egkebhhogppokoapdkjmbddeagahoifp |
Περιγραφή | Hear chess moves and annotation spoken as they are played on Chess.com. |
Μέγεθος Αρχείου | 16.16 MB |
Αριθμός Εγκαταστάσεων | 570 |
Τρέχουσα Έκδοση | 1.0.1 |
Τελευταία Ενημέρωση | 2021-05-31 |
Ημερομηνία Δημοσίευσης | 2021-05-25 |
Αξιολόγηση | 4.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | helloray504 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/rctay/chesscom-voice-deux |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/rctay/chesscom-voice-deux/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icon-128.png", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "contentScript.bundle.js" ], "matches": [ "https:\/\/www.chess.com\/*" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "Hear chess moves and annotation spoken as they are played on Chess.com.", "icons": { "128": "icon-128.png" }, "manifest_version": 2, "name": "Chess.com Voice Commentary (improved)", "options_page": "options.html", "permissions": [ "storage" ], "version": "1.0.1", "web_accessible_resources": [ "sounds\/*" ] } |