YouTube Easy Resume
An extension that provides auto-resume functionality and an easy to access watchlist for YouTube
YouTube Easy Resumeคืออะไร?
YouTube Easy Resume เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Annenberg Media และคุณลักษณะหลักของมันคือ "An extension that provides auto-resume functionality and an easy to access watchlist for YouTube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Easy Resume
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Easy Resume ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever tried to finish a YouTube video you started watching earlier, but couldn't find it? Maybe it's a show you love, but all the episodes look the same. Or you can't find exactly where you left off. YouTube's built-in history feature... leaves much to be desired. The YouTube Easy Resume extension provides an easy-to-access watch history list through a simple interface. Once you install the extension, **pin it in your toolbar** and you'll be able to open a dropdown to see YouTube videos you didn't finish, jump right back to where you were watching, and access the content you want. When you resume a video it will start playing right where you left off. You can also tweak the settings to change what videos show up in the extension. Do you want it to only include videos that are longer than 5 minutes? Or to only list videos you've watched for more than two minutes? Easy peasy. All your video history is stored locally, no one else has access to what you watch. Besides, we would never judge you for watching four-hour-long action figure unboxing videos. You do you. This extension was made by the web team in the Annenberg Media newsroom to make watching YouTube a better experience. It's a labor of love, something we wanted to use ourselves, and wanted to share with the world. Digital Development Lead: Gautam Rajan Graphics: B Digital production supervisor: Graham Clark
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Easy Resume |
ID | jnnbaimhjkojbpaeaejjdecpljheogcn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-easy-resume/jnnbaimhjkojbpaeaejjdecpljheogcn |
คำอธิบาย | An extension that provides auto-resume functionality and an easy to access watchlist for YouTube |
ขนาดไฟล์ | 53.6 KB |
จำนวนการติดตั้ง | 759 |
เวอร์ชันปัจจุบัน | 0.0.1.2 |
อัปเดตครั้งล่าสุด | 2024-01-03 |
วันที่เผยแพร่ | 2022-04-14 |
คะแนน | 4.60/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Annenberg Media |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Easy Resume", "version": "0.0.1.2", "description": "An extension that provides auto-resume functionality and an easy to access watchlist for YouTube", "short_name": "YT Easy Resume", "permissions": [ "unlimitedStorage", "storage" ], "host_permissions": [ "http:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_title": "YouTube Easy Resume", "default_popup": "popup.html", "default_icon": { "16": "icons\/icon128.png" } }, "web_accessible_resources": [ { "resources": [ "icons\/redcircle.svg", "icons\/playericon.svg", "icons\/playericon_inactive.svg" ], "matches": [ "http:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } ] } |