Dance Dash

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

O que é Dance Dash?

Dance Dash é uma extensão do Chrome desenvolvida por grantkim93, e sua principal característica é "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Dance Dash

Baixe arquivos de extensão Dance Dash no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
URL Oficial https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
Descrição Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Tamanho do Arquivo 31.94 KB
Contagem de Instalações 49
Versão Atual 1.4
Última Atualização 2020-08-13
Data de Publicação 2020-04-14
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor grantkim93
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}