Any Video Resume
Return to last time you stopped any video.
What is Any Video Resume?
Any Video Resume is a Chrome extension developed by https://www.bit01.de, and its main feature is "Return to last time you stopped any video.".
Extension Screenshots
Download Any Video Resume Extension CRX File
Download Any Video Resume extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | nlbiijlalckdjibflknamcbhonniglkl |
Official URL | https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl |
Description | Return to last time you stopped any video. |
File Size | 20.34 KB |
Installation Count | 100 |
Current Version | 1.2.0 |
Last Updated | 2021-11-26 |
Publish Date | 2021-11-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://www.bit01.de |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bitnulleins/any-video-resume |
Help Page URL | https://www.bit01.de/kontakt/ |
Supported Languages | 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" ] } |