Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Cos'è Dance Dash?
Dance Dash è un'estensione di Chrome sviluppata da grantkim93, e la sua funzione principale è "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dance Dash
Scarica i file di estensione Dance Dash in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
URL Ufficiale | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
Descrizione | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
Dimensione del File | 31.94 KB |
Conteggio Installazioni | 49 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2020-08-13 |
Data di Pubblicazione | 2020-04-14 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | grantkim93 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |