Dance Dash

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

Co je Dance Dash?

Dance Dash je rozšíření Chrome vyvinuté grantkim93, a jeho hlavní funkcí je „Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Dance Dash

Stáhněte si soubory rozšíření Dance Dash ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
Oficiální URL https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
Popis Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Velikost souboru 31.94 KB
Počet instalací 49
Aktuální Verze 1.4
Poslední Aktualizace 2020-08-13
Datum Vydání 2020-04-14
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář grantkim93
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}