YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
Hvad er YouTube Playlist Duration?
YouTube Playlist Duration er en Chrome-udvidelse udviklet af Jaiwanth, og dens hovedfunktion er "This extension calculates and displays the total duration of a YouTube Playlist".
Udvidelsesskærmbilleder
Download YouTube Playlist Duration-udvidelses-CRX-fil
Download YouTube Playlist Duration-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
- 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.)
Grundlæggende oplysninger om udvidelsen
Navn | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
Officiel URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Beskrivelse | This extension calculates and displays the total duration of a YouTube Playlist |
Filstørrelse | 8.68 KB |
Antal Installationer | 257 |
Nuværende Version | 2.2 |
Senest Opdateret | 2022-10-28 |
Udgivelsesdato | 2020-07-31 |
Bedømmelse | 4.29/5 Samlet 7 Bedømmelser |
Udvikler | Jaiwanth |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/jaiwanth-v/youtube-playlist-duration |
Hjælpeside-URL | https://github.com/jaiwanth-v/youtube-playlist-duration |
Understøttede Sprog | 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\/*" ] } ] } |