HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Co to jest HTML5 Video Resumer?

HTML5 Video Resumer to rozszerzenie Chrome opracowane przez Merten Peetz, a jego główną funkcją jest „Resumes HTML5 videos that you played before.”.

Pobierz plik CRX rozszerzenia HTML5 Video Resumer

Pobierz pliki rozszerzeń HTML5 Video Resumer 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

                        This extension will automatically remember at which time you left HTML5 videos and will resume them when played again. The times for played videos are saved up to 1 month.

It supports all HTML5 video formats including MP4 and WEBM. Flash videos are not supported.

It doesn't work for sites that change the video URLs on every page visit yet, such as Youtube and Netflix. However, often times those sites have build in video resume support.                    

Podstawowe informacje o rozszerzeniu

Nazwa HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
Oficjalny URL https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Opis Resumes HTML5 videos that you played before.
Rozmiar pliku 8.17 KB
Liczba instalacji 318
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-02-23
Data Publikacji 2016-02-23
Ocena 3.67/5 Łącznie 6 Oceny
Deweloper Merten Peetz
Typ Płatności free
Strona Rozszerzenia https://github.com/MorbZ/HTML5-Video-Resumer
Adres URL Strony Pomocy https://github.com/MorbZ/HTML5-Video-Resumer/issues
Obsługiwane Języki de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML5 Video Resumer",
    "version": "1.0.1",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/functions.js",
                "js\/content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/functions.js",
            "js\/background.js"
        ]
    }
}