Any Video Resume
Return to last time you stopped any video.
Was ist Any Video Resume?
Any Video Resume ist eine Chrome-Erweiterung, die von https://www.bit01.de entwickelt wurde, und ihr Hauptmerkmal ist "Return to last time you stopped any video.".
Erweiterungsscreenshots
Any Video Resume-Erweiterungs-CRX-Datei herunterladen
Laden Sie Any Video Resume-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | nlbiijlalckdjibflknamcbhonniglkl |
Offizielle URL | https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl |
Beschreibung | Return to last time you stopped any video. |
Dateigröße | 20.34 KB |
Installationsanzahl | 100 |
Aktuelle Version | 1.2.0 |
Letztes Update | 2021-11-26 |
Veröffentlichungsdatum | 2021-11-10 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://www.bit01.de |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/bitnulleins/any-video-resume |
Hilfeseite URL | https://www.bit01.de/kontakt/ |
Unterstützte Sprachen | 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" ] } |