Youtube Playlist Duration Calculator
An extension to calculate & display the total duration of a youtube playlist.
O que é Youtube Playlist Duration Calculator?
Youtube Playlist Duration Calculator é uma extensão do Chrome desenvolvida por Vandern, e sua principal característica é "An extension to calculate & display the total duration of a youtube playlist.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Playlist Duration Calculator
Baixe arquivos de extensão Youtube Playlist Duration Calculator 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
💡 How to use: After installing & enabling the extension, simply visit any youtube playlist overview page (the url should begin with 'https://youtube.com/playlist'). For example, https://www.youtube.com/playlist?list=PLAhTBeRe8IhMmRve_rSfAgL_dtEXkKh8Z The total duration of the playlist can then be found within the playlist information panel, located on the left-hand side of the page. You will see the following three values displayed: - Total duration (formatted as hh:mm:ss) - Videos counted (how many videos were used to calculate the total duration) - Videos not counted (how many videos could not be used to calculate the total duration) 🌐 Source Code: https://github.com/nrednav/youtube-playlist-duration-calculator
Informações Básicas da Extensão
Nome | Youtube Playlist Duration Calculator |
ID | pijbakhgmhhadeakaocjfockpndcpobk |
URL Oficial | https://chromewebstore.google.com/detail/youtube-playlist-duration/pijbakhgmhhadeakaocjfockpndcpobk |
Descrição | An extension to calculate & display the total duration of a youtube playlist. |
Tamanho do Arquivo | 28.21 KB |
Contagem de Instalações | 34,339 |
Versão Atual | 2.0.5 |
Última Atualização | 2023-10-13 |
Data de Publicação | 2020-01-28 |
Classificação | 4.07/5 Total de 119 Avaliações |
Desenvolvedor | Vandern |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/nrednav/youtube-playlist-duration-calculator |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.0.5", "manifest_version": 3, "name": "Youtube Playlist Duration Calculator", "short_name": "YTPD Calc", "description": "An extension to calculate & display the total duration of a youtube playlist.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png" }, "default_title": "YTPD Calculator" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "src\/library.js", "src\/content.js" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ] } |