YouTube Chapterize

Provides convenience functions to handle YouTube chapters.

Что такое YouTube Chapterize?

YouTube Chapterize - это расширение Chrome, разработанное blackway, и его основная функция - "Provides convenience functions to handle YouTube chapters.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Chapterize

Скачайте файлы расширений 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"
            ]
        }
    ]
}