HTML5 Video Resumer

Resumes HTML5 videos that you played before.

Apa itu HTML5 Video Resumer?

HTML5 Video Resumer adalah ekstensi Chrome yang dikembangkan oleh Merten Peetz, dan fitur utamanya adalah "Resumes HTML5 videos that you played before.".

Unduh Berkas CRX Ekstensi HTML5 Video Resumer

Unduh file ekstensi HTML5 Video Resumer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
URL Resmi https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Deskripsi Resumes HTML5 videos that you played before.
Ukuran File 8.17 KB
Jumlah Instalasi 318
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2016-02-23
Tanggal Publikasi 2016-02-23
Penilaian 3.67/5 Total 6 Penilaian
Pengembang Merten Peetz
Tipe Pembayaran free
Situs Ekstensi https://github.com/MorbZ/HTML5-Video-Resumer
URL Halaman Bantuan https://github.com/MorbZ/HTML5-Video-Resumer/issues
Bahasa yang Didukung 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"
        ]
    }
}