YouTube Playlist Duration bar

A progress bar to show playlist progress and duration

YouTube Playlist Duration barคืออะไร?

YouTube Playlist Duration bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย WaiShen และคุณลักษณะหลักของมันคือ "A progress bar to show playlist progress and duration"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Playlist Duration bar

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Playlist Duration bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension calculate and display the progress and duration of YouTube playlist when watching video in playlist or viewing playlist. 
Automatically update the calculation when videos added, deleted, reordered or start playing new video. 
Works on any type of playlist including public or private playlist, Watch later, Liked videos.

When videos is playing:
- Total duration#
- Watched time
- Watched percentage
- Remaining time

When viewing a playlist
- Total duration*
- Video counted

If you have any suggestion or want to report a bug, please send me a email or leave a message in User support.
Please refresh all YouTube page after extension upgrade.

# Only count video in the playlist panel, YouTube UI only load ±200 videos into the panel.
* Only count video in the playlist panel, if the number of videos counted not matching the actual number of videos in the playlist, scroll down to load more videos, or some videos are hidden by YouTube UI.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Playlist Duration bar YouTube Playlist Duration bar
ID klbacnllhiilbiiedcbgfafmnedldgeg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-playlist-duration/klbacnllhiilbiiedcbgfafmnedldgeg
คำอธิบาย A progress bar to show playlist progress and duration
ขนาดไฟล์ 1.03 MB
จำนวนการติดตั้ง 209
เวอร์ชันปัจจุบัน 0.6.5
อัปเดตครั้งล่าสุด 2023-11-09
วันที่เผยแพร่ 2023-05-10
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา WaiShen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/WaiShen1000/youtube_extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Playlist Duration bar",
    "version": "0.6.5",
    "description": "A progress bar to show playlist progress and duration",
    "manifest_version": 3,
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*"
    ],
    "action": {
        "default_popup": "html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "css\/common.css",
                "css\/duration-playing.css",
                "css\/duration-playlist.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "resources": [
                "scripts\/duration-playing.js",
                "scripts\/duration-playlist.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    }
}