Youtube Playlist Duration Calculator

An extension to calculate & display the total duration of a youtube playlist.

Youtube Playlist Duration Calculator क्या है?

Youtube Playlist Duration Calculator Vandern द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to calculate & display the total duration of a youtube playlist."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube Playlist Duration Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        💡 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                    

एक्सटेंशन की मूल जानकारी

नाम Youtube Playlist Duration Calculator Youtube Playlist Duration Calculator
ID pijbakhgmhhadeakaocjfockpndcpobk
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-playlist-duration/pijbakhgmhhadeakaocjfockpndcpobk
विवरण An extension to calculate & display the total duration of a youtube playlist.
फ़ाइल का आकार 28.21 KB
स्थापना संख्या 34,339
वर्तमान संस्करण 2.0.5
अंतिम अपडेट 2023-10-13
प्रकाशन तिथि 2020-01-28
रेटिंग 4.07/5 कुल 119 रेटिंग्स
डेवलपर Vandern
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nrednav/youtube-playlist-duration-calculator
समर्थित भाषाएँ 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\/*"
    ]
}