Dance Dash

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

What is Dance Dash?

Dance Dash is a Chrome extension developed by grantkim93, and its main feature is "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".

Extension Screenshots

screenshot

Download Dance Dash Extension CRX File

Download Dance Dash extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
Official URL https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
Description Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
File Size 31.94 KB
Installation Count 49
Current Version 1.4
Last Updated 2020-08-13
Publish Date 2020-04-14
Rating 5.00/5 Total 2 Ratings
Developer grantkim93
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}