My Awesome Playlist

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

Qu'est-ce que My Awesome Playlist ?

My Awesome Playlist est une extension Chrome développée par Unknown, et sa fonction principale est "Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension My Awesome Playlist

Téléchargez les fichiers d'extension My Awesome Playlist au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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?                    

Informations de Base sur l'Extension

Nom My Awesome Playlist My Awesome Playlist
ID emohgdjhmmddojabggflikolojeaefnh
URL Officiel https://chromewebstore.google.com/detail/my-awesome-playlist/emohgdjhmmddojabggflikolojeaefnh
Description Because the good things came in small packages! Enjoy this new extension, create and share playlist! Awesome, isn't it?
Taille du Fichier 1016 KB
Nombre d'Installations 172
Version Actuelle 1.0
Dernière Mise à Jour 2016-08-05
Date de Publication 2016-08-04
Évaluation 3.67/5 Total 3 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://yout.com
URL de la Page d'Aide https://twitter.com/lou_alcala
Langues Prises en Charge 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'"
}