YouLoop

Put YouTube videos on loop with one click

YouLoop란 무엇입니까?

YouLoop은(는) Marko Kajzer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Put YouTube videos on loop with one click"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ♫ Enjoy Music ♫

Loop your favorite YouTube videos. Just click the new loop icon next to the other YouTube video control icons while watching a YouTube video - the icon rotates and turns red indicating that the current YouTube video will be repeated. You can stop looping by pressing on the icon again.

So why choose this extension instead of the others?
• Much smaller than other extensions (<= 30kB vs. >= 100kB)
• No support for Flash player which is old and deprecated. Let's help remove Flash Player from the internet!
• Low memory usage since it is just a script.
• Fancy animations!
• Vanilla JavaScript only!
• Other extensions of the same kind include unnecessary code and the code base is very messy.

• If you have any problems or suggestions, feel free to click on "Support" and shoot me a question.
• If you like this extension, please consider rating it.                    

확장 프로그램 기본 정보

이름 YouLoop YouLoop
ID fbeahjcnoclflfhkgphfadjldhfadncl
공식 URL https://chromewebstore.google.com/detail/youloop/fbeahjcnoclflfhkgphfadjldhfadncl
설명 Put YouTube videos on loop with one click
파일 크기 27.7 KB
설치 횟수 1,686
현재 버전 0.7.0
최근 업데이트 2021-08-05
출시 날짜 2018-09-11
평점 4.82/5 총 33 개의 평점
개발자 Marko Kajzer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/markokajzer/youloop
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Marko Kajzer",
    "name": "YouLoop",
    "version": "0.7.0",
    "description": "Put YouTube videos on loop with one click",
    "icons": {
        "19": "icons\/icon_19px.png",
        "32": "icons\/icon_32px.png",
        "38": "icons\/icon_38px.png",
        "48": "icons\/icon_48px.png",
        "128": "icons\/icon_128px.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles\/youloop.css"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": []
}