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文件
下載YouTube Playlist Duration擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- 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.) 擴展基本資訊
| 名稱 | |
| ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
| 官方網址 | 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\/*"
]
}
]
} | |