YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
Qu'est-ce que YouTube Playlist Duration ?
YouTube Playlist Duration est une extension Chrome développée par Jaiwanth, et sa fonction principale est "This extension calculates and displays the total duration of a YouTube Playlist".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Playlist Duration
Téléchargez les fichiers d'extension YouTube Playlist Duration au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
- 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.)
Informations de Base sur l'Extension
Nom | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
URL Officiel | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Description | This extension calculates and displays the total duration of a YouTube Playlist |
Taille du Fichier | 8.68 KB |
Nombre d'Installations | 257 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2022-10-28 |
Date de Publication | 2020-07-31 |
Évaluation | 4.29/5 Total 7 Évaluations |
Développeur | Jaiwanth |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jaiwanth-v/youtube-playlist-duration |
URL de la Page d'Aide | https://github.com/jaiwanth-v/youtube-playlist-duration |
Langues Prises en Charge | 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\/*" ] } ] } |