Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

ما هو Enable Chapters for Youtube؟

Enable Chapters for Youtube هو إضافة Chrome تم تطويرها بواسطة Robin van Nunen، والميزة الرئيسية لها هي "This will enable the Chapters feature for Youtube.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Enable Chapters for Youtube

قم بتنزيل ملفات الامتداد Enable Chapters for Youtube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        The extension searches for chapter definitions in the video description or in the comment section and shows them in the video timeline. It works with any video and is very useful for i.e.: music sets and podcasts.

Example chapter definition:
00:00 - Intro
[02:00] Topic 1
(02:00) Topic 2
Topic 3 - 03:00                    

معلومات أساسية عن التمديد

الاسم Enable Chapters for Youtube Enable Chapters for Youtube
ID mmkmlfcfdmdccmddalhcdfappcdhmbgg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/enable-chapters-for-youtu/mmkmlfcfdmdccmddalhcdfappcdhmbgg
الوصف This will enable the Chapters feature for Youtube.
حجم الملف 18.49 KB
عدد التثبيتات 33
النسخة الحالية 1.0.0
آخر تحديث 2020-06-22
تاريخ النشر 2020-06-22
تقييم 5.00/5 مجموع تقييمات 1
المطور Robin van Nunen
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Enable Chapters for Youtube",
    "version": "1.0.0",
    "author": "Robin van Nunen",
    "description": "This will enable the Chapters feature for Youtube.",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "content.js"
    ]
}