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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |