YouTube Playlist Duration

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

Was ist YouTube Playlist Duration?

YouTube Playlist Duration ist eine Chrome-Erweiterung, die von Jaiwanth entwickelt wurde, und ihr Hauptmerkmal ist "This extension calculates and displays the total duration of a YouTube Playlist".

Erweiterungsscreenshots

screenshot
screenshot

YouTube Playlist Duration-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Playlist Duration-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name YouTube Playlist Duration YouTube Playlist Duration
ID pmaemkjbelibcgknodkoeggkohmhdnbb
Offizielle URL https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb
Beschreibung This extension calculates and displays the total duration of a YouTube Playlist
Dateigröße 8.68 KB
Installationsanzahl 257
Aktuelle Version 2.2
Letztes Update 2022-10-28
Veröffentlichungsdatum 2020-07-31
Bewertung 4.29/5 Insgesamt 7 Bewertungen
Entwickler Jaiwanth
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/jaiwanth-v/youtube-playlist-duration
Hilfeseite URL https://github.com/jaiwanth-v/youtube-playlist-duration
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}