YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
Wat is YouTube Playlist Duration?
YouTube Playlist Duration is een Chrome-extensie ontwikkeld door Jaiwanth, en de belangrijkste functie is "This extension calculates and displays the total duration of a YouTube Playlist".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Playlist Duration
Download YouTube Playlist Duration-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- 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.)
Basisinformatie over de Extensie
Naam | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
Officiële URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Beschrijving | This extension calculates and displays the total duration of a YouTube Playlist |
Bestandsgrootte | 8.68 KB |
Aantal Installaties | 257 |
Huidige Versie | 2.2 |
Laatst Bijgewerkt | 2022-10-28 |
Publicatiedatum | 2020-07-31 |
Beoordeling | 4.29/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Jaiwanth |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/jaiwanth-v/youtube-playlist-duration |
Help Pagina-URL | https://github.com/jaiwanth-v/youtube-playlist-duration |
Ondersteunde Talen | 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\/*" ] } ] } |