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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}