Youtube Playlist Duration Calculator
An extension to calculate & display the total duration of a youtube playlist.
Что такое Youtube Playlist Duration Calculator?
Youtube Playlist Duration Calculator - это расширение Chrome, разработанное Vandern, и его основная функция - "An extension to calculate & display the total duration of a youtube playlist.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Playlist Duration Calculator
Скачайте файлы расширений Youtube Playlist Duration Calculator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
💡 How to use: After installing & enabling the extension, simply visit any youtube playlist overview page (the url should begin with 'https://youtube.com/playlist'). For example, https://www.youtube.com/playlist?list=PLAhTBeRe8IhMmRve_rSfAgL_dtEXkKh8Z The total duration of the playlist can then be found within the playlist information panel, located on the left-hand side of the page. You will see the following three values displayed: - Total duration (formatted as hh:mm:ss) - Videos counted (how many videos were used to calculate the total duration) - Videos not counted (how many videos could not be used to calculate the total duration) 🌐 Source Code: https://github.com/nrednav/youtube-playlist-duration-calculator
Основная информация о расширении
Название | Youtube Playlist Duration Calculator |
ID | pijbakhgmhhadeakaocjfockpndcpobk |
Официальный URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pijbakhgmhhadeakaocjfockpndcpobk |
Описание | An extension to calculate & display the total duration of a youtube playlist. |
Размер файла | 28.21 KB |
Количество установок | 34,339 |
Текущая Версия | 2.0.5 |
Последнее Обновление | 2023-10-13 |
Дата публикации | 2020-01-28 |
Рейтинг | 4.07/5 Всего 119 оценок |
Разработчик | Vandern |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/nrednav/youtube-playlist-duration-calculator |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.0.5", "manifest_version": 3, "name": "Youtube Playlist Duration Calculator", "short_name": "YTPD Calc", "description": "An extension to calculate & display the total duration of a youtube playlist.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png" }, "default_title": "YTPD Calculator" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "src\/library.js", "src\/content.js" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ] } |