HTML5 Video Resumer

Resumes HTML5 videos that you played before.

ما هو HTML5 Video Resumer؟

HTML5 Video Resumer هو إضافة Chrome تم تطويرها بواسطة Merten Peetz، والميزة الرئيسية لها هي "Resumes HTML5 videos that you played before.".

تحميل ملف CRX للإضافة HTML5 Video Resumer

قم بتنزيل ملفات الامتداد HTML5 Video Resumer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
عنوان URL الرسمي https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
الوصف Resumes HTML5 videos that you played before.
حجم الملف 8.17 KB
عدد التثبيتات 318
النسخة الحالية 1.0.1
آخر تحديث 2016-02-23
تاريخ النشر 2016-02-23
تقييم 3.67/5 مجموع تقييمات 6
المطور Merten Peetz
نوع الدفع free
موقع الإضافة https://github.com/MorbZ/HTML5-Video-Resumer
عنوان صفحة المساعدة https://github.com/MorbZ/HTML5-Video-Resumer/issues
اللغات المدعومة 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"
        ]
    }
}