Personal Playlist for YouTube on Chrome

Add youtube links to your special playlist and manage them in custom player.

Personal Playlist for YouTube on Chrome란 무엇입니까?

Personal Playlist for YouTube on Chrome은(는) ProWebJect에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add youtube links to your special playlist and manage them in custom player."입니다.

확장 프로그램 스크린샷

screenshot

Personal Playlist for YouTube on Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        How to:
Rightclick youtube link -> Add to playlist -> Go to youtube -> Click YouTube Playlist icon on the right side of address bar -> DONE :) Now you can play and manage your playlist.                    

확장 프로그램 기본 정보

이름 Personal Playlist for YouTube on Chrome Personal Playlist for YouTube on Chrome
ID kjakkfkngikelijjclgkplmiclokfmfi
공식 URL https://chrome.google.com/webstore/detail/personal-playlist-for-you/kjakkfkngikelijjclgkplmiclokfmfi
설명 Add youtube links to your special playlist and manage them in custom player.
파일 크기 56.42 KB
설치 횟수 362
현재 버전 1.8
최근 업데이트 2016-01-03
출시 날짜 2016-01-03
평점 3.40/5 총 5 개의 평점
개발자 ProWebJect
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "ProWebJect - Micha\u0142 G\u00f3ra",
    "background": {
        "scripts": [
            "\/lib\/jquery.min.js",
            "\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "background\/youtube_front.css"
            ],
            "js": [
                "lib\/jquery.min.js",
                "background\/youtube_front.js"
            ],
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.youtube.com\/iframe_api; object-src 'self'",
    "description": "Add youtube links to your special playlist and manage them in custom player.",
    "externally_connectable": {
        "matches": [
            "http:\/\/prowebject.com\/YTPlayer\/*",
            "http:\/\/www.prowebject.com\/YTPlayer\/*"
        ]
    },
    "icons": {
        "128": "img\/icon_128.png",
        "19": "img\/icon_19.png",
        "38": "img\/icon_38.png"
    },
    "manifest_version": 2,
    "name": "Personal Playlist for YouTube on Chrome",
    "options_page": "\/html\/options.html",
    "page_action": {
        "default_icon": {
            "128": "img\/icon_128.png",
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Run playlist!"
    },
    "permissions": [
        "declarativeContent",
        "notifications",
        "storage",
        "contextMenus",
        "tabs",
        "identity",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "https:\/\/www.googleapis.com\/youtube\/v3\/*"
    ],
    "short_name": "Personal Playlist",
    "version": "1.8",
    "web_accessible_resources": [
        "lib\/jquery-2.0.3.min.map",
        "img\/button_add.png",
        "img\/trash.png",
        "img\/button_next.png",
        "img\/repeat.png",
        "img\/settings.png",
        "img\/play.png",
        "img\/player.png"
    ]
}