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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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