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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My Awesome Playlist

ดาวน์โหลดไฟล์ส่วนขยาย My Awesome Playlist ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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'"
}