Video Resumer

Automatically resumes YouTube videos from where you played them last.

Video Resumer란 무엇입니까?

Video Resumer은(는) Appteligent LTD.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically resumes YouTube videos from where you played them last."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Video Resumer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Without this extension, for example, when you click through YouTube videos, back and forth, they always start from the beginning, even those, you left watched half way through. No more. With this extension, previously watched videos will resume from where you left them at. Even if you restart your browser.

Version 1.2.1, 1.2.2 fix playback issues with updated YouTube interface.

Version 1.2.0 brings additional options, such as considering a video finished if only a few seconds remain on it and expiring older videos.

Version 1.1 and up now handles YouTube videos, posted on other websites.                    

확장 프로그램 기본 정보

이름 Video Resumer Video Resumer
ID bongjkoajofkfpofginnhecihgaeldpe
공식 URL https://chromewebstore.google.com/detail/video-resumer/bongjkoajofkfpofginnhecihgaeldpe
설명 Automatically resumes YouTube videos from where you played them last.
파일 크기 20.69 KB
설치 횟수 44,553
현재 버전 1.2.2
최근 업데이트 2014-02-06
출시 날짜 2014-02-05
평점 4.03/5 총 343 개의 평점
개발자 Appteligent LTD.
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Resumer",
    "version": "1.2.2",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_description__",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "options_page": "content\/options.html",
    "background": {
        "scripts": [
            "content\/settings.js",
            "content\/console.js",
            "content\/chrome-storage.js",
            "content\/tracker.js",
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/embed\/*"
            ],
            "js": [
                "content\/settings.js",
                "content\/console.js",
                "content\/yt.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "alarms"
    ]
}