YouTube next chapter button

Adds a button to the YouTube player to fast-forward to the next section of the video

Что такое YouTube next chapter button?

YouTube next chapter button - это расширение Chrome, разработанное Alex Kozack, и его основная функция - "Adds a button to the YouTube player to fast-forward to the next section of the video".

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

screenshot

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

Скачайте файлы расширений YouTube next chapter button в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This will work for all videos that have been labeled with chapters.                    

Основная информация о расширении

Название YouTube next chapter button YouTube next chapter button
ID dnhblfjgbcgeoiidbbhephfmhamfkeak
Официальный URL https://chromewebstore.google.com/detail/youtube-next-chapter-butt/dnhblfjgbcgeoiidbbhephfmhamfkeak
Описание Adds a button to the YouTube player to fast-forward to the next section of the video
Размер файла 21.94 KB
Количество установок 54
Текущая Версия 2.0.2
Последнее Обновление 2023-10-23
Дата публикации 2023-07-27
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Alex Kozack
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.buymeacoffee.com/kozack
URL страницы помощи https://github.com/cawa-93/youtube-forward-timeline/
Поддерживаемые языки en,pl,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_APP_NAME__",
    "version": "2.0.2",
    "description": "__MSG_APP_DESCRIPTION__",
    "author": "Alex Kozack  (https:\/\/t.me\/kozack)",
    "homepage_url": "https:\/\/github.com\/cawa-93\/youtube-forward-timeline",
    "default_locale": "en",
    "icons": {
        "373": "YouTubeRewind.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{40ab1417-ef94-48d7-8726-6abe7d07b123}",
            "strict_min_version": "109.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}