My Awesome Playlist

Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?

My Awesome Playlist란 무엇입니까?

My Awesome Playlist은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?"입니다.

확장 프로그램 스크린샷

screenshot

My Awesome Playlist 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Because the good things came in small packages!

After releasing my first Chrome Extension, that allows you to search, play and record your favorites youtube videos; I decided to get a new challenge, create a small (and hopefully useful) extension that allows you to create playlists, save them and share them without removing the features of the first extension.

This is the first step of a huge list of applications that I love to create in my free time, please follow me on my twitter at @lou_alcala and send any message if you love this application and if you want me to add a new feature. If you find some issues, please be patience.

Enjoy my new chrome extension that allows you to create and share your playlists, also play and record your favorite youtube videos! Awesome, isn't it?                    

확장 프로그램 기본 정보

이름 My Awesome Playlist My Awesome Playlist
ID emohgdjhmmddojabggflikolojeaefnh
공식 URL https://chromewebstore.google.com/detail/my-awesome-playlist/emohgdjhmmddojabggflikolojeaefnh
설명 Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?
파일 크기 1016 KB
설치 횟수 172
현재 버전 1.0
최근 업데이트 2016-08-05
출시 날짜 2016-08-04
평점 3.67/5 총 3 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://yout.com
도움말 페이지 URL https://twitter.com/lou_alcala
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "My Awesome Playlist",
    "description": "Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "extension.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Tiny playlist",
        "default_icon": "images\/logo.png"
    },
    "permissions": [
        "https:\/\/www.googleapis.com\/*"
    ],
    "web_accessible_resources": [
        "https:\/\/www.youtube.com\/player_api"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.youtube.com\/iframe_api https:\/\/s.ytimg.com\/yts\/jsbin\/www-widgetapi-vfldKI4RW.js https:\/\/s.ytimg.com\/yts\/jsbin\/www-widgetapi-vflgGL-5Q.js; object-src 'self'"
}