YouTube Playlist Duration Calculator & Sorter

Get YouTube playlist duration & sort videos in a playlist.

YouTube Playlist Duration Calculator & Sorter란 무엇입니까?

YouTube Playlist Duration Calculator & Sorter은(는) Alperen Özdinç에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get YouTube playlist duration & sort videos in a playlist."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

YouTube Playlist Duration Calculator & Sorter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Get YouTube playlist duration & sort videos in a playlist.

To use:
-Visit any video in a playlist (https://www.youtube.com/watch?v=Wy1bTEFQyCc&list=PLNYkxOF6rcIDC0-BiwSL52yQ0n9rNozaF)
-Wait for page to fully load
-You can see the length and YouTube Playlist Toolkit

You may need to refresh the page if any error occurs.

You can see total playlist duration just above the videos.
You can remove or add any videos you want from calculation
You can select any spesific video and see the length after that video to the last.
You can also sort the playlist by name or length and then back to original playlist order.
All private or deleted videos will be filtered after extension starts.

Currently, extension does not work in YouTube page navigation, so the page must be refreshed after navigating to another playlist in same tab.

Any feedback from users will be taken into consideration as soon as possible.

You can see the source code on website section. Feel free to contribute!                    

확장 프로그램 기본 정보

이름 YouTube Playlist Duration Calculator & Sorter YouTube Playlist Duration Calculator & Sorter
ID dngkgieidmdojikecmaelophabnldbhh
공식 URL https://chrome.google.com/webstore/detail/youtube-playlist-duration/dngkgieidmdojikecmaelophabnldbhh
설명 Get YouTube playlist duration & sort videos in a playlist.
파일 크기 1.27 MB
설치 횟수 391
현재 버전 1.1
최근 업데이트 2021-02-04
출시 날짜 2021-01-13
평점 2.07/5 총 14 개의 평점
개발자 Alperen Özdinç
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ozdincalp/youtube-playlist-duration-calculator-sorter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Playlist Duration Calculator & Sorter",
    "version": "1.1",
    "description": "Get YouTube playlist duration & sort videos in a playlist.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*list*"
            ],
            "js": [
                "app.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/*.youtube.com\/watch*list*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    }
}