YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

YouTube Chapterize là gì?

YouTube Chapterize là một tiện ích mở rộng Chrome được phát triển bởi blackway, và tính năng chính của nó là "Provides convenience functions to handle YouTube chapters.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Chapterize

Tải xuống các tệp mở rộng YouTube Chapterize dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Chapterize YouTube Chapterize
ID pndbjffcoioeikhcfofoefnlbiiidclh
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-chapterize/pndbjffcoioeikhcfofoefnlbiiidclh
Mô tả Provides convenience functions to handle YouTube chapters.
Kích Thước Tệp 10.32 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 2
Cập Nhật Lần Cuối 2021-11-24
Ngày Phát Hành 2021-11-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển blackway
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}