YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

什么是YouTube Chapterize?

YouTube Chapterize是由blackway开发的Chrome扩展程序,该扩展的主要功能是“Provides convenience functions to handle YouTube chapters.”。

扩展截图

screenshot

下载YouTube Chapterize扩展crx文件

下载YouTube Chapterize扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Use this extension if you want to shuffle the order of chapters. If you toggle the shuffle button at the top of the chapter list, the play time will shift to a random chapter when one chapter has finished playing.

Features
- You can shuffle chapters in a video.                    

扩展基本信息

名称 YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
官方URL https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
简介 Provides convenience functions to handle YouTube chapters.
文件大小 10.32 KB
安装次数 58
当前版本 2
更新时间 2021-11-24
上架时间 2021-11-23
评分 5.00/5 共2次评分
开发者 blackway
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Chapterize",
    "description": "Provides convenience functions to handle YouTube chapters.",
    "version": "2",
    "manifest_version": 3,
    "permissions": [
        "scripting"
    ],
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}