YouTube Playlist Duration

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

Apa itu YouTube Playlist Duration?

YouTube Playlist Duration adalah ekstensi Chrome yang dikembangkan oleh Jaiwanth, dan fitur utamanya adalah "This extension calculates and displays the total duration of a YouTube Playlist".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi YouTube Playlist Duration

Unduh file ekstensi YouTube Playlist Duration dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama YouTube Playlist Duration YouTube Playlist Duration
ID pmaemkjbelibcgknodkoeggkohmhdnbb
URL Resmi https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb
Deskripsi This extension calculates and displays the total duration of a YouTube Playlist
Ukuran File 8.68 KB
Jumlah Instalasi 257
Versi Saat Ini 2.2
Terakhir Diperbarui 2022-10-28
Tanggal Publikasi 2020-07-31
Penilaian 4.29/5 Total 7 Penilaian
Pengembang Jaiwanth
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/jaiwanth-v/youtube-playlist-duration
URL Halaman Bantuan https://github.com/jaiwanth-v/youtube-playlist-duration
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}