YouTube Playlist Duration

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

什么是YouTube Playlist Duration?

YouTube Playlist Duration是由Jaiwanth开发的Chrome扩展程序,该扩展的主要功能是“This extension calculates and displays the total duration of a YouTube Playlist”。

扩展截图

screenshot
screenshot

下载YouTube Playlist Duration扩展crx文件

下载YouTube Playlist Duration扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - 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
帮助页面URL 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\/*"
            ]
        }
    ]
}