Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Τι είναι το Dance Dash;
Το Dance Dash είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον grantkim93, και η κύρια λειτουργία του είναι "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Dance Dash
Λήψη αρχείων επέκτασης Dance Dash σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
For anyone who has tried to learn dances through Youtube, you probably know the pain of having to walk over to your computer, find the correct start point, and do it all over again when you want to practice a sequence again. DanceDash is a little dashboard that allows you to save timestamps of videos for quick access and also customize viewing with loops, different playback speeds, and start and end times. Let's all become dope dancers!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
Επίσημο URL | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
Περιγραφή | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
Μέγεθος Αρχείου | 31.94 KB |
Αριθμός Εγκαταστάσεων | 49 |
Τρέχουσα Έκδοση | 1.4 |
Τελευταία Ενημέρωση | 2020-08-13 |
Ημερομηνία Δημοσίευσης | 2020-04-14 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | grantkim93 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dance Dash", "version": "1.4", "description": "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.", "manifest_version": 2, "icons": { "128": "danceimage.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "storage", "activeTab" ], "page_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ] } |