Dance Dash

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

Dance Dashคืออะไร?

Dance Dash เป็นส่วนขยายของ Chrome ที่พัฒนาโดย grantkim93 และคุณลักษณะหลักของมันคือ "Dashboard for saving timestamps and customizing viewing while learning dances on Youtube."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dance Dash

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}