Dance Dash

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

Was ist Dance Dash?

Dance Dash ist eine Chrome-Erweiterung, die von grantkim93 entwickelt wurde, und ihr Hauptmerkmal ist "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".

Erweiterungsscreenshots

screenshot

Dance Dash-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dance Dash-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
Offizielle URL https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
Beschreibung Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Dateigröße 31.94 KB
Installationsanzahl 49
Aktuelle Version 1.4
Letztes Update 2020-08-13
Veröffentlichungsdatum 2020-04-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler grantkim93
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}