deejay.de goodies
Optimize your music discovery process with simple keyboard shortcuts and a pitch fader*
Τι είναι το deejay.de goodies;
Το deejay.de goodies είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον codeexhibit, και η κύρια λειτουργία του είναι "Optimize your music discovery process with simple keyboard shortcuts and a pitch fader*".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης deejay.de goodies
Λήψη αρχείων επέκτασης deejay.de goodies σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you enjoy browsing for records on deejay.de, then you'll definitely find this extension helpful. First of all, it will add a pitch fader* to the player. Second, it enables some simple keyboard shortcuts to help you discover new music faster. Shortcuts: Space: play/pause Right/left arrow: go forward/back 5 seconds Down/up arrow: play next/previous track Page down/up: play the next/previous vinyl in your list, cart or charts +/-: adjust the pitch (for now it's actually the playback rate) This extension is only for the JavaScript version of deejay.de. If for some reason you are still getting the Flash version of the player, you can disable Flash for the site to see it in action. * At the moment it only changes the playback rate. If I find a solution for actual pitch modification I'll update the code. Feedback is always welcome, so if you think something is missing send me an e-mail at [email protected] The source code for this extension is released under an MIT license (you can use it in any way you want as long as you give credit to the author) and can be seen here: https://github.com/codeexhibit/deejay.de
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cmdladopcpieibicajikofgfmjimimkk |
Επίσημο URL | https://chromewebstore.google.com/detail/deejayde-goodies/cmdladopcpieibicajikofgfmjimimkk |
Περιγραφή | Optimize your music discovery process with simple keyboard shortcuts and a pitch fader* |
Μέγεθος Αρχείου | 10.42 KB |
Αριθμός Εγκαταστάσεων | 36 |
Τρέχουσα Έκδοση | 0.1.5 |
Τελευταία Ενημέρωση | 2017-11-03 |
Ημερομηνία Δημοσίευσης | 2017-11-03 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | codeexhibit |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "deejay.de goodies", "description": "Optimize your music discovery process with simple keyboard shortcuts and a pitch fader*", "version": "0.1.5", "content_scripts": [ { "matches": [ "*:\/\/*.deejay.de\/*" ], "js": [ "bootstrap.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "deejay.de++" }, "web_accessible_resources": [ "script.js" ] } |