Chess You Can Hear
Adds sound effects that reflect the current chess game being played on lichess.org
Τι είναι το Chess You Can Hear;
Το Chess You Can Hear είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Adds sound effects that reflect the current chess game being played on lichess.org".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Chess You Can Hear
Λήψη αρχείων επέκτασης Chess You Can Hear σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Chess You Can Hear is a program I developed so that anybody could enjoy the sweet sounds of their chess games online. As you play a game of online chess on lichess.com, this chrome extension will follow the moves of the game, and in real-time, play chords and notes that I recorded to reflect the mood of each individual move. The code that I wrote to create this applet can be found at this link: https://github.com/AlexMedoff/ChromeExtensionChessSound Please understand that this is the first build of the applet, so there are definitely some bugs and some ways the app can be improved upon. Enjoy! Thanks, Alex Medoff
Βασικές Πληροφορίες Επέκτασης
Όνομα | Chess You Can Hear |
ID | gdgdlkjidhiinbjijnklmhbdiiomgdkn |
Επίσημο URL | https://chromewebstore.google.com/detail/chess-you-can-hear/gdgdlkjidhiinbjijnklmhbdiiomgdkn |
Περιγραφή | Adds sound effects that reflect the current chess game being played on lichess.org |
Μέγεθος Αρχείου | 1.55 MB |
Αριθμός Εγκαταστάσεων | 174 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2018-10-11 |
Ημερομηνία Δημοσίευσης | 2018-10-11 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/AlexMedoff/ChromeExtensionChessSound |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/AlexMedoff/ChromeExtensionChessSound |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chess You Can Hear", "version": "1.0", "description": "Adds sound effects that reflect the current chess game being played on lichess.org", "browser_action": { "default_icon": "chess_icon.png", "default_title": "Chess You Can Hear" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.lichess.org\/*", "http:\/\/*.lichess.org\/*" ], "js": [ "sounds.js", "player.js" ] } ], "web_accessible_resources": [ "*.mp3" ] } |