Dance Dash

Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.

Wat is Dance Dash?

Dance Dash is een Chrome-extensie ontwikkeld door grantkim93, en de belangrijkste functie is "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Dance Dash

Download Dance Dash-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
Officiële URL https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
Beschrijving Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Bestandsgrootte 31.94 KB
Aantal Installaties 49
Huidige Versie 1.4
Laatst Bijgewerkt 2020-08-13
Publicatiedatum 2020-04-14
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar grantkim93
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}