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.”。
擴展截圖
下載Youtube Playlist Duration Calculator擴展crx文件
下載Youtube Playlist Duration Calculator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
💡 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 |
ID | pijbakhgmhhadeakaocjfockpndcpobk |
官方網址 | 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\/*" ] } |