HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Wat is HTML5 Video Resumer?

HTML5 Video Resumer is een Chrome-extensie ontwikkeld door Merten Peetz, en de belangrijkste functie is "Resumes HTML5 videos that you played before.".

Download het CRX-bestand van de extensie HTML5 Video Resumer

Download HTML5 Video Resumer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
Officiële URL https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Beschrijving Resumes HTML5 videos that you played before.
Bestandsgrootte 8.17 KB
Aantal Installaties 318
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-02-23
Publicatiedatum 2016-02-23
Beoordeling 3.67/5 Totaal 6 Beoordelingen
Ontwikkelaar Merten Peetz
Betalingswijze free
Extensiewebsite https://github.com/MorbZ/HTML5-Video-Resumer
Help Pagina-URL https://github.com/MorbZ/HTML5-Video-Resumer/issues
Ondersteunde Talen 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"
        ]
    }
}