Any Video Resume

Return to last time you stopped any video.

Any Video Resume란 무엇입니까?

Any Video Resume은(는) https://www.bit01.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Return to last time you stopped any video."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        The extension remembers where you last left a video and *resumes* it there. This works for ANY HTML5 video on all common platforms (YouTube, Vimeo, ...). This works even without a logged in user. for each It remembers the last places of videos for a year.

It considers only videos that go at least 60 seconds. It will ignore short videos (intros, promotional videos...). As soon as the last 30 seconds are reached, the video starts from the beginning.                    

확장 프로그램 기본 정보

이름 Any Video Resume Any Video Resume
ID nlbiijlalckdjibflknamcbhonniglkl
공식 URL https://chrome.google.com/webstore/detail/any-video-resume/nlbiijlalckdjibflknamcbhonniglkl
설명 Return to last time you stopped any video.
파일 크기 20.34 KB
설치 횟수 100
현재 버전 1.2.0
최근 업데이트 2021-11-26
출시 날짜 2021-11-10
평점 5.00/5 총 2 개의 평점
개발자 https://www.bit01.de
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bitnulleins/any-video-resume
도움말 페이지 URL https://www.bit01.de/kontakt/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Any Video Resume",
    "version": "1.2.0",
    "description": "Return to last time you stopped any video.",
    "icons": {
        "48": "icons\/logo-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/js\/storage.js",
                ".\/js\/video.js",
                ".\/js\/content.js",
                ".\/js\/popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "icons\/logo-48.png",
        "default_popup": ".\/html\/popup.html"
    },
    "permissions": [
        "storage"
    ]
}