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开发的Chrome扩展程序,该扩展的主要功能是“An extension to calculate & display the total duration of a youtube playlist.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Youtube Playlist Duration Calculator扩展crx文件

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

扩展使用说明

                        💡 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\/*"
    ]
}