YouTube Playlist Duration

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

Vad är YouTube Playlist Duration?

YouTube Playlist Duration är en Chrome-tillägg utvecklad av Jaiwanth, och dess huvudfunktion är "This extension calculates and displays the total duration of a YouTube Playlist".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouTube Playlist Duration-förlängningens CRX-fil

Ladda ner YouTube Playlist Duration-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn YouTube Playlist Duration YouTube Playlist Duration
ID pmaemkjbelibcgknodkoeggkohmhdnbb
Officiell webbadress https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb
Beskrivning This extension calculates and displays the total duration of a YouTube Playlist
Filstorlek 8.68 KB
Antal Installationer 257
Aktuell Version 2.2
Senast Uppdaterad 2022-10-28
Publiceringsdatum 2020-07-31
Betyg 4.29/5 Totalt 7 Betyg
Utvecklare Jaiwanth
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jaiwanth-v/youtube-playlist-duration
Hjälpsida URL https://github.com/jaiwanth-v/youtube-playlist-duration
Stödda Språk 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\/*"
            ]
        }
    ]
}