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
官方網址 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"
            ]
        }
    ]
}