YouTube Repeat

Repeats a YouTube video

YouTube Repeat란 무엇입니까?

YouTube Repeat은(는) Jimmy Fu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Repeats a YouTube video"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Minimalistic extension for replaying YouTube videos.

Instructions:
1) Open a YouTube video
2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused)
3) Press it to enable or disable                    

확장 프로그램 기본 정보

이름 YouTube Repeat YouTube Repeat
ID bijjfhgimphjklllkmbdapkfemdnhmpj
공식 URL https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj
설명 Repeats a YouTube video
파일 크기 24.45 KB
설치 횟수 2,323
현재 버전 1.1
최근 업데이트 2015-10-09
출시 날짜 2015-10-08
평점 4.37/5 총 35 개의 평점
개발자 Jimmy Fu
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Repeat",
    "short_name": "Repeat",
    "description": "Repeats a YouTube video",
    "version": "1.1",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Repeat"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs"
    ]
}