YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
Что такое YouTube Playlist Duration?
YouTube Playlist Duration - это расширение Chrome, разработанное Jaiwanth, и его основная функция - "This extension calculates and displays the total duration of a YouTube Playlist".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Playlist Duration
Скачайте файлы расширений YouTube Playlist Duration в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
- This extension works with any number of videos - You can set the index of starting and ending video and get duration of those videos. - Also works on mobile Refresh the page after installing the extension. If the number of videos in a playlist are more than 100, just scroll down to get complete duration.(As most of the time, YouTube renders only 100 videos for the first time page loads.)
Основная информация о расширении
Название | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
Официальный URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Описание | This extension calculates and displays the total duration of a YouTube Playlist |
Размер файла | 8.68 KB |
Количество установок | 257 |
Текущая Версия | 2.2 |
Последнее Обновление | 2022-10-28 |
Дата публикации | 2020-07-31 |
Рейтинг | 4.29/5 Всего 7 оценок |
Разработчик | Jaiwanth |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jaiwanth-v/youtube-playlist-duration |
URL страницы помощи | https://github.com/jaiwanth-v/youtube-playlist-duration |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Playlist Duration", "version": "2.2", "description": "This extension calculates and displays the total duration of a YouTube Playlist", "icons": { "48": "icon48.png" }, "action": { "default_icon": { "48": "icon48.png" }, "default_popup": "popup.html", "default_title": "Playlist Duration Calculator" }, "permissions": [ "activeTab" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ] } ] } |