HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Vad är HTML5 Video Resumer?

HTML5 Video Resumer är en Chrome-tillägg utvecklad av Merten Peetz, och dess huvudfunktion är "Resumes HTML5 videos that you played before.".

Ladda ner HTML5 Video Resumer-förlängningens CRX-fil

Ladda ner HTML5 Video Resumer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
Officiell webbadress https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Beskrivning Resumes HTML5 videos that you played before.
Filstorlek 8.17 KB
Antal Installationer 318
Aktuell Version 1.0.1
Senast Uppdaterad 2016-02-23
Publiceringsdatum 2016-02-23
Betyg 3.67/5 Totalt 6 Betyg
Utvecklare Merten Peetz
Betalningssätt free
Tilläggswebbplats https://github.com/MorbZ/HTML5-Video-Resumer
Hjälpsida URL https://github.com/MorbZ/HTML5-Video-Resumer/issues
Stödda Språk 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"
        ]
    }
}