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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
        ]
    }
}