Parse Youtube Links and Create Playlist

Parse Youtube links in the current page and create a Youtube playlist.

Qu'est-ce que Parse Youtube Links and Create Playlist ?

Parse Youtube Links and Create Playlist est une extension Chrome développée par Deepak, et sa fonction principale est "Parse Youtube links in the current page and create a Youtube playlist.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Parse Youtube Links and Create Playlist

Téléchargez les fichiers d'extension Parse Youtube Links and Create 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

                        This extension parses all Youtube links in the current page and creates a Youtube playlist.

Instructions:

- Visit the website you want to parse and create a Youtube playlist. (Eg: reddit.com/r/Music)
- Click the extension's icon next to the chrome address bar.
- Opens a new tab and creates a playlist on Youtube.                    

Informations de Base sur l'Extension

Nom Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
URL Officiel https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Description Parse Youtube links in the current page and create a Youtube playlist.
Taille du Fichier 32.89 KB
Nombre d'Installations 725
Version Actuelle 0.1
Dernière Mise à Jour 2018-03-01
Date de Publication 2018-03-01
Évaluation 3.70/5 Total 10 Évaluations
Développeur Deepak
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Parse Youtube Links and Create Playlist",
    "description": "Parse Youtube links in the current page and create a Youtube playlist.",
    "version": "0.1",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon32.png",
        "default_title": "Parse and Create Youtube playlist."
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lodash.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}