Dance Dash
Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
¿Qué es Dance Dash?
Dance Dash es una extensión de Chrome desarrollada por grantkim93, y su función principal es "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Dance Dash
Descarga archivos de extensión Dance Dash en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | Dance Dash |
ID | imhappkpaidminfjnkfghcphigbeikma |
URL Oficial | https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma |
Descripción | Dashboard for saving timestamps and customizing viewing while learning dances on Youtube. |
Tamaño del Archivo | 31.94 KB |
Cantidad de Instalaciones | 49 |
Versión Actual | 1.4 |
Última Actualización | 2020-08-13 |
Fecha de Publicación | 2020-04-14 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | grantkim93 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |