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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
        ]
    }
}