HTML5 Video Resumer

Resumes HTML5 videos that you played before.

HTML5 Video Resumer là gì?

HTML5 Video Resumer là một tiện ích mở rộng Chrome được phát triển bởi Merten Peetz, và tính năng chính của nó là "Resumes HTML5 videos that you played before.".

Tải xuống tệp CRX của tiện ích mở rộng HTML5 Video Resumer

Tải xuống các tệp mở rộng HTML5 Video Resumer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HTML5 Video Resumer HTML5 Video Resumer
ID gbommkoaofnelolgpcmeakpfbgghagdi
URL Chính Thức https://chrome.google.com/webstore/detail/html5-video-resumer/gbommkoaofnelolgpcmeakpfbgghagdi
Mô tả Resumes HTML5 videos that you played before.
Kích Thước Tệp 8.17 KB
Số Lần Cài Đặt 318
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-02-23
Ngày Phát Hành 2016-02-23
Đánh Giá 3.67/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Merten Peetz
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/MorbZ/HTML5-Video-Resumer
URL Trang Trợ Giúp https://github.com/MorbZ/HTML5-Video-Resumer/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}