Any Video Resume
Return to last time you stopped any video.
Co to jest Any Video Resume?
Any Video Resume to rozszerzenie Chrome opracowane przez https://www.bit01.de, a jego główną funkcją jest „Return to last time you stopped any video.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Any Video Resume
Pobierz pliki rozszerzeń Any Video Resume w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | nlbiijlalckdjibflknamcbhonniglkl |
Oficjalny URL | https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl |
Opis | Return to last time you stopped any video. |
Rozmiar pliku | 20.34 KB |
Liczba instalacji | 100 |
Aktualna Wersja | 1.2.0 |
Ostatnia Aktualizacja | 2021-11-26 |
Data Publikacji | 2021-11-10 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://www.bit01.de |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/bitnulleins/any-video-resume |
Adres URL Strony Pomocy | https://www.bit01.de/kontakt/ |
Obsługiwane Języki | 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" ] } |