Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Vad är Dance Dash?
Dance Dash är en Chrome-tillägg utvecklad av grantkim93, och dess huvudfunktion är "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".
Tilläggsskärmbilder
Ladda ner Dance Dash-förlängningens CRX-fil
Ladda ner Dance Dash-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
Officiell webbadress | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
Beskrivning | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
Filstorlek | 31.94 KB |
Antal Installationer | 49 |
Aktuell Version | 1.4 |
Senast Uppdaterad | 2020-08-13 |
Publiceringsdatum | 2020-04-14 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | grantkim93 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |