YouTube Playlist Duration

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

ما هو YouTube Playlist Duration؟

YouTube Playlist Duration هو إضافة Chrome تم تطويرها بواسطة Jaiwanth، والميزة الرئيسية لها هي "This extension calculates and displays the total duration of a YouTube Playlist".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة YouTube Playlist Duration

قم بتنزيل ملفات الامتداد YouTube Playlist Duration بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم YouTube Playlist Duration YouTube Playlist Duration
ID pmaemkjbelibcgknodkoeggkohmhdnbb
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb
الوصف This extension calculates and displays the total duration of a YouTube Playlist
حجم الملف 8.68 KB
عدد التثبيتات 257
النسخة الحالية 2.2
آخر تحديث 2022-10-28
تاريخ النشر 2020-07-31
تقييم 4.29/5 مجموع تقييمات 7
المطور Jaiwanth
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/jaiwanth-v/youtube-playlist-duration
عنوان صفحة المساعدة https://github.com/jaiwanth-v/youtube-playlist-duration
اللغات المدعومة 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\/*"
            ]
        }
    ]
}