HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Cos'è HTML5 Video Resumer?

HTML5 Video Resumer è un'estensione di Chrome sviluppata da Merten Peetz, e la sua funzione principale è "Resumes HTML5 videos that you played before.".

Scarica il file CRX dell'estensione HTML5 Video Resumer

Scarica i file di estensione HTML5 Video Resumer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
URL Ufficiale https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Descrizione Resumes HTML5 videos that you played before.
Dimensione del File 8.17 KB
Conteggio Installazioni 318
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-02-23
Data di Pubblicazione 2016-02-23
Valutazione 3.67/5 Totale 6 Valutazioni
Sviluppatore Merten Peetz
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/MorbZ/HTML5-Video-Resumer
URL della Pagina di Aiuto https://github.com/MorbZ/HTML5-Video-Resumer/issues
Lingue Supportate 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"
        ]
    }
}