Youtube Playlist Duration Calculator
An extension to calculate & display the total duration of a youtube playlist.
Youtube Playlist Duration Calculator là gì?
Youtube Playlist Duration Calculator là một tiện ích mở rộng Chrome được phát triển bởi Vandern, và tính năng chính của nó là "An extension to calculate & display 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 Calculator
Tải xuống các tệp mở rộng Youtube Playlist Duration Calculator 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
💡 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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Playlist Duration Calculator |
ID | pijbakhgmhhadeakaocjfockpndcpobk |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-playlist-duration/pijbakhgmhhadeakaocjfockpndcpobk |
Mô tả | An extension to calculate & display the total duration of a youtube playlist. |
Kích Thước Tệp | 28.21 KB |
Số Lần Cài Đặt | 34,339 |
Phiên Bản Hiện Tại | 2.0.5 |
Cập Nhật Lần Cuối | 2023-10-13 |
Ngày Phát Hành | 2020-01-28 |
Đánh Giá | 4.07/5 Tổng số 119 Đánh Giá |
Nhà Phát Triển | Vandern |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nrednav/youtube-playlist-duration-calculator |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |