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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}