YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
YouTube Playlist Durationคืออะไร?
YouTube Playlist Duration เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jaiwanth และคุณลักษณะหลักของมันคือ "This extension calculates and displays the total duration of a YouTube Playlist"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Playlist Duration
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| 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\/*"
]
}
]
} | |