YouTube Playlist Duration

This extension calculates and displays the total duration of a YouTube Playlist

Cos'è YouTube Playlist Duration?

YouTube Playlist Duration è un'estensione di Chrome sviluppata da Jaiwanth, e la sua funzione principale è "This extension calculates and displays the total duration of a YouTube Playlist".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Playlist Duration

Scarica i file di estensione YouTube Playlist Duration in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        - 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.)                    

Informazioni di Base sull'Estensione

Nome YouTube Playlist Duration YouTube Playlist Duration
ID pmaemkjbelibcgknodkoeggkohmhdnbb
URL Ufficiale https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb
Descrizione This extension calculates and displays the total duration of a YouTube Playlist
Dimensione del File 8.68 KB
Conteggio Installazioni 257
Versione Corrente 2.2
Ultimo Aggiornamento 2022-10-28
Data di Pubblicazione 2020-07-31
Valutazione 4.29/5 Totale 7 Valutazioni
Sviluppatore Jaiwanth
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jaiwanth-v/youtube-playlist-duration
URL della Pagina di Aiuto https://github.com/jaiwanth-v/youtube-playlist-duration
Lingue Supportate 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\/*"
            ]
        }
    ]
}