Youtube Looper

Custom loops extension for Youtube videos

Youtube Looper란 무엇입니까?

Youtube Looper은(는) Wilker Lúcio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Custom loops extension for Youtube videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Use this plugin to loop in sections of Youtube videos!

This is a great tool to help you do music training, or any kind of thing you can leverage repetition on video sections!

Features
- create multiple loops so you can train sections with ease
- your loops are locally stored, when you get back to your videos your loops will still be there
- set a custom playback rate (you can use very precise rates as 0.7 0.85 so you can train on your speed)
- automatically generate loops for videos that have markers

Pro tips:
- Hold shift key to adjust time in steps of 100ms instead of 1 second.
- Hold shift and click on play to start loop 3 seconds before the loop time.
- Click on the Speed label to reset speed to 100%
- Click on the time numbers to edit via text (for very precise editing)
- If you end a loop before the start, it will flip start/end automatically (actually, that happens if try to make the start to go after the finish in any editing way possible).

You can find the source code for this project at https://github.com/wilkerlucio/media-looper.                    

확장 프로그램 기본 정보

이름 Youtube Looper Youtube Looper
ID bidjeabmcpopfddfcnpniceojmkklcje
공식 URL https://chromewebstore.google.com/detail/youtube-looper/bidjeabmcpopfddfcnpniceojmkklcje
설명 Custom loops extension for Youtube videos
파일 크기 288 KB
설치 횟수 6,702
현재 버전 2021.06.29
최근 업데이트 2021-06-30
출시 날짜 2018-04-26
평점 4.22/5 총 55 개의 평점
개발자 Wilker Lúcio
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wilkerlucio/media-looper
도움말 페이지 URL https://github.com/wilkerlucio/media-looper/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Looper",
    "version": "2021.06.29",
    "description": "Custom loops extension for Youtube videos",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "js\/youtube\/main.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "js\/*"
    ]
}