YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
YouTube Playlist Duration là gì?
YouTube Playlist Duration là một tiện ích mở rộng Chrome được phát triển bởi Jaiwanth, và tính năng chính của nó là "This extension calculates and displays the total duration of a YouTube Playlist".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Playlist Duration
Tải xuống các tệp mở rộng YouTube Playlist Duration dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
- 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.)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
Mô tả | This extension calculates and displays the total duration of a YouTube Playlist |
Kích Thước Tệp | 8.68 KB |
Số Lần Cài Đặt | 257 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2022-10-28 |
Ngày Phát Hành | 2020-07-31 |
Đánh Giá | 4.29/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Jaiwanth |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/jaiwanth-v/youtube-playlist-duration |
URL Trang Trợ Giúp | https://github.com/jaiwanth-v/youtube-playlist-duration |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |