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" ] } |