YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
What is YouTube Playlist Duration?
YouTube Playlist Duration is a Chrome extension developed by Jaiwanth, and its main feature is "This extension calculates and displays the total duration of a YouTube Playlist".
Extension Screenshots
Download YouTube Playlist Duration Extension CRX File
Download YouTube Playlist Duration extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
- 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.)
Extension Basic Information
Name | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
Official URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Description | This extension calculates and displays the total duration of a YouTube Playlist |
File Size | 8.68 KB |
Installation Count | 257 |
Current Version | 2.2 |
Last Updated | 2022-10-28 |
Publish Date | 2020-07-31 |
Rating | 4.29/5 Total 7 Ratings |
Developer | Jaiwanth |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jaiwanth-v/youtube-playlist-duration |
Help Page URL | https://github.com/jaiwanth-v/youtube-playlist-duration |
Supported Languages | 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\/*" ] } ] } |