YouQue

Queueing youtube videos

YouQue란 무엇입니까?

YouQue은(는) Pahvi67에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Queueing youtube videos"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        YouQue will allow you to queue YouTube videos. All you need to do is open YouTube in adjacent tabs and they will play in order from left to right. It will also automatically stop videos to further help manage the tabs.

Currently this has no on/off button so you will have to disable it in extensions if you don't want to use it.

In case you have any questions or encounter any bugs please let me know.                    

확장 프로그램 기본 정보

이름 YouQue YouQue
ID jedkmelkipfnbcgbanaeogegckbfeejh
공식 URL https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh
설명 Queueing youtube videos
파일 크기 38.07 KB
설치 횟수 29
현재 버전 1.0
최근 업데이트 2014-10-20
출시 날짜 2014-10-20
평점 2.00/5 총 2 개의 평점
개발자 Pahvi67
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouQue",
    "description": "Queueing youtube videos",
    "version": "1.0",
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.youtube.fi\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.fi\/*",
                "https:\/\/*.youtube.fi\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "permissions": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtube.fi\/*",
                "tabs"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "eventPage.js"
        ],
        "persistent": false
    }
}