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"입니다.
확장 프로그램 스크린샷
YouTube Playlist Duration 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- 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 |
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\/*" ] } ] } |