Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Co to jest Dance Dash?
Dance Dash to rozszerzenie Chrome opracowane przez grantkim93, a jego główną funkcją jest „Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Dance Dash
Pobierz pliki rozszerzeń Dance Dash w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
Oficjalny URL | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
Opis | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
Rozmiar pliku | 31.94 KB |
Liczba instalacji | 49 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2020-08-13 |
Data Publikacji | 2020-04-14 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | grantkim93 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |