Any Video Resume
Return to last time you stopped any video.
Any Video Resumeคืออะไร?
Any Video Resume เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.bit01.de และคุณลักษณะหลักของมันคือ "Return to last time you stopped any video."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Any Video Resume
ดาวน์โหลดไฟล์ส่วนขยาย Any Video Resume ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The extension remembers where you last left a video and *resumes* it there. This works for ANY HTML5 video on all common platforms (YouTube, Vimeo, ...). This works even without a logged in user. for each It remembers the last places of videos for a year. It considers only videos that go at least 60 seconds. It will ignore short videos (intros, promotional videos...). As soon as the last 30 seconds are reached, the video starts from the beginning.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nlbiijlalckdjibflknamcbhonniglkl |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl |
คำอธิบาย | Return to last time you stopped any video. |
ขนาดไฟล์ | 20.34 KB |
จำนวนการติดตั้ง | 100 |
เวอร์ชันปัจจุบัน | 1.2.0 |
อัปเดตครั้งล่าสุด | 2021-11-26 |
วันที่เผยแพร่ | 2021-11-10 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://www.bit01.de |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/bitnulleins/any-video-resume |
URL หน้าช่วยเหลือ | https://www.bit01.de/kontakt/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Any Video Resume", "version": "1.2.0", "description": "Return to last time you stopped any video.", "icons": { "48": "icons\/logo-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ ".\/js\/storage.js", ".\/js\/video.js", ".\/js\/content.js", ".\/js\/popup.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icons\/logo-48.png", "default_popup": ".\/html\/popup.html" }, "permissions": [ "storage" ] } |