YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
¿Qué es YouTube Playlist Duration?
YouTube Playlist Duration es una extensión de Chrome desarrollada por Jaiwanth, y su función principal es "This extension calculates and displays the total duration of a YouTube Playlist".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Playlist Duration
Descarga archivos de extensión YouTube Playlist Duration en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
- 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.)
Información Básica de la Extensión
Nombre | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
URL Oficial | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Descripción | This extension calculates and displays the total duration of a YouTube Playlist |
Tamaño del Archivo | 8.68 KB |
Cantidad de Instalaciones | 257 |
Versión Actual | 2.2 |
Última Actualización | 2022-10-28 |
Fecha de Publicación | 2020-07-31 |
Calificación | 4.29/5 Total de 7 Calificaciones |
Desarrollador | Jaiwanth |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/jaiwanth-v/youtube-playlist-duration |
URL de la Página de Ayuda | https://github.com/jaiwanth-v/youtube-playlist-duration |
Idiomas Soportados | 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\/*" ] } ] } |