Enable Chapters for Youtube
This will enable the Chapters feature for Youtube.
Что такое Enable Chapters for Youtube?
Enable Chapters for Youtube - это расширение Chrome, разработанное Robin van Nunen, и его основная функция - "This will enable the Chapters feature for Youtube.".
Снимки экрана расширения
Скачать файл CRX расширения Enable Chapters for Youtube
Скачайте файлы расширений 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
Основная информация о расширении
Название | |
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" ] } |