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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में My Awesome Playlist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}