Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Qu'est-ce que Dance Dash ?
Dance Dash est une extension Chrome développée par grantkim93, et sa fonction principale est "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dance Dash
Téléchargez les fichiers d'extension Dance Dash au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
URL Officiel | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
Description | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
Taille du Fichier | 31.94 KB |
Nombre d'Installations | 49 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2020-08-13 |
Date de Publication | 2020-04-14 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | grantkim93 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |