Dance Dash

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

Dance Dash là gì?

Dance Dash là một tiện ích mở rộng Chrome được phát triển bởi grantkim93, và tính năng chính của nó là "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dance Dash

Tải xuống các tệp mở rộng Dance Dash dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dance Dash Dance Dash
ID imhappkpaidminfjnkfghcphigbeikma
URL Chính Thức https://chromewebstore.google.com/detail/dance-dash/imhappkpaidminfjnkfghcphigbeikma
Mô tả Dashboard for saving timestamps and customizing viewing while learning dances on Youtube.
Kích Thước Tệp 31.94 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2020-08-13
Ngày Phát Hành 2020-04-14
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển grantkim93
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}