HTML5 Video Resumer

Resumes HTML5 videos that you played before.

什么是HTML5 Video Resumer?

HTML5 Video Resumer是由Merten Peetz开发的Chrome扩展程序,该扩展的主要功能是“Resumes HTML5 videos that you played before.”。

下载HTML5 Video Resumer扩展crx文件

下载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"
        ]
    }
}