YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
O que é YouTube Playlist Duration?
YouTube Playlist Duration é uma extensão do Chrome desenvolvida por Jaiwanth, e sua principal característica é "This extension calculates and displays the total duration of a YouTube Playlist".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Playlist Duration
Baixe arquivos de extensão YouTube Playlist Duration no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
- 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.)
Informações Básicas da Extensão
Nome | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
URL Oficial | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Descrição | This extension calculates and displays the total duration of a YouTube Playlist |
Tamanho do Arquivo | 8.68 KB |
Contagem de Instalações | 257 |
Versão Atual | 2.2 |
Última Atualização | 2022-10-28 |
Data de Publicação | 2020-07-31 |
Classificação | 4.29/5 Total de 7 Avaliações |
Desenvolvedor | Jaiwanth |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jaiwanth-v/youtube-playlist-duration |
URL da Página de Ajuda | https://github.com/jaiwanth-v/youtube-playlist-duration |
Idiomas Suportados | 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\/*" ] } ] } |