Dance Dash

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

什么是Dance Dash?

Dance Dash是由grantkim93开发的Chrome扩展程序,该扩展的主要功能是“Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.”。

扩展截图

screenshot

下载Dance Dash扩展crx文件

下载Dance Dash扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
官方URL https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
简介 Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
文件大小 31.94 KB
安装次数 49
当前版本 1.4
更新时间 2020-08-13
上架时间 2020-04-14
评分 5.00/5 共2次评分
开发者 grantkim93
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}