HTML5 Video Resumer

Resumes HTML5 videos that you played before.

What is HTML5 Video Resumer?

HTML5 Video Resumer is a Chrome extension developed by Merten Peetz, and its main feature is "Resumes HTML5 videos that you played before.".

Download HTML5 Video Resumer Extension CRX File

Download HTML5 Video Resumer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
Official URL https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Description Resumes HTML5 videos that you played before.
File Size 8.17 KB
Installation Count 318
Current Version 1.0.1
Last Updated 2016-02-23
Publish Date 2016-02-23
Rating 3.67/5 Total 6 Ratings
Developer Merten Peetz
Payment Type free
Extension Website https://github.com/MorbZ/HTML5-Video-Resumer
Help Page URL https://github.com/MorbZ/HTML5-Video-Resumer/issues
Supported Languages 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"
        ]
    }
}