Enable Chapters for Youtube

This will enable the Chapters feature for Youtube.

什么是Enable Chapters for Youtube?

Enable Chapters for Youtube是由Robin van Nunen开发的Chrome扩展程序,该扩展的主要功能是“This will enable the Chapters feature for Youtube.”。

扩展截图

screenshot
screenshot

下载Enable Chapters for Youtube扩展crx文件

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