HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Co je HTML5 Video Resumer?

HTML5 Video Resumer je rozšíření Chrome vyvinuté Merten Peetz, a jeho hlavní funkcí je „Resumes HTML5 videos that you played before.“.

Stáhnout soubor CRX rozšíření HTML5 Video Resumer

Stáhněte si soubory rozšíření HTML5 Video Resumer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
Oficiální URL https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Popis Resumes HTML5 videos that you played before.
Velikost souboru 8.17 KB
Počet instalací 318
Aktuální Verze 1.0.1
Poslední Aktualizace 2016-02-23
Datum Vydání 2016-02-23
Hodnocení 3.67/5 Celkem 6 Hodnocení
Vývojář Merten Peetz
Typ Platby free
Webové stránky Rozšíření https://github.com/MorbZ/HTML5-Video-Resumer
URL Stránky Nápovědy https://github.com/MorbZ/HTML5-Video-Resumer/issues
Podporované Jazyky 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"
        ]
    }
}