Video Looper

Loop parts or multiple parts of any video on the web.

Video Looper란 무엇입니까?

Video Looper은(는) stavsapp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Loop parts or multiple parts of any video on the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Loop any part of a video, or multiple parts, easily.

Just click on the extension icon and then `Create Repeat` to get started.

Choose the start and end time of the repeat loop; either by picking the current video time or by manually setting the times. You can also use the slider to quickly move the time.
Then you can pick how many times (or infinitely) to repeat the loops and also if you want any delays between repeats.

You can always add another repeat loop to the same video or reset the repeat counter.

All kinds of extra options available in the setting pages.

Great for learning a new instrument with tutorials, DIY videos and much more.

Enjoy :)

Works on almost all video hosting websites.                    

확장 프로그램 기본 정보

이름 Video Looper Video Looper
ID cakhljgchfghghfapljifddkaomfijcn
공식 URL https://chromewebstore.google.com/detail/video-looper/cakhljgchfghghfapljifddkaomfijcn
설명 Loop parts or multiple parts of any video on the web.
파일 크기 269 KB
설치 횟수 2,947
현재 버전 0.0.4
최근 업데이트 2021-03-09
출시 날짜 2019-12-04
평점 3.88/5 총 8 개의 평점
개발자 stavsapp
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Looper",
    "version": "0.0.4",
    "description": "Loop parts or multiple parts of any video on the web.",
    "permissions": [
        "activeTab",
        "storage",
        "notifications",
        "declarativeContent"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-start.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "utils.js",
        "content-script.js",
        "content-start.js"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/VideoLooperImageLightRedBlue16.png",
            "48": "images\/VideoLooperImageLightRedBlue48.png",
            "128": "images\/VideoLooperImageLightRedBlue128.png"
        }
    },
    "icons": {
        "16": "images\/VideoLooperImageLightRedBlue16.png",
        "48": "images\/VideoLooperImageLightRedBlue48.png",
        "128": "images\/VideoLooperImageLightRedBlue128.png"
    },
    "manifest_version": 2
}