Youtube Repeat

Save your preference once and it will repeat the video for your favourite songs

Youtube Repeat란 무엇입니까?

Youtube Repeat은(는) mercury200Hg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save your preference once and it will repeat the video for your favourite songs"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Single repeat choice for all YouTube links.

- Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage.

Icons used are made by Freepick from www.flaticons.com                    

확장 프로그램 기본 정보

이름 Youtube Repeat Youtube Repeat
ID mbimaenpniemflhmhbahldkfppflbcjh
공식 URL https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh
설명 Save your preference once and it will repeat the video for your favourite songs
파일 크기 8.63 KB
설치 횟수 361
현재 버전 1.0.0
최근 업데이트 2017-03-12
출시 날짜 2017-03-12
평점 4.33/5 총 6 개의 평점
개발자 mercury200Hg
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Repeat",
    "browser_action": {
        "default_icon": "loop-arrow-32.png",
        "default_popup": "popup.html",
        "default_title": "Click repeat"
    },
    "description": "Save your preference once and it will repeat the video for your favourite songs",
    "icons": {
        "128": "loop-arrow-128.png",
        "32": "loop-arrow-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ],
    "version": "1.0.0"
}