YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
Co je YouTube Playlist Duration?
YouTube Playlist Duration je rozšíření Chrome vyvinuté Jaiwanth, a jeho hlavní funkcí je „This extension calculates and displays the total duration of a YouTube Playlist“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Playlist Duration
Stáhněte si soubory rozšíření YouTube Playlist Duration ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
- 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.)
Základní Informace o Rozšíření
Název | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
Oficiální URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Popis | This extension calculates and displays the total duration of a YouTube Playlist |
Velikost souboru | 8.68 KB |
Počet instalací | 257 |
Aktuální Verze | 2.2 |
Poslední Aktualizace | 2022-10-28 |
Datum Vydání | 2020-07-31 |
Hodnocení | 4.29/5 Celkem 7 Hodnocení |
Vývojář | Jaiwanth |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/jaiwanth-v/youtube-playlist-duration |
URL Stránky Nápovědy | https://github.com/jaiwanth-v/youtube-playlist-duration |
Podporované Jazyky | 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\/*" ] } ] } |