Parse Youtube Links and Create Playlist

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

¿Qué es Parse Youtube Links and Create Playlist?

Parse Youtube Links and Create Playlist es una extensión de Chrome desarrollada por Deepak, y su función principal es "Parse Youtube links in the current page and create a Youtube playlist.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Parse Youtube Links and Create Playlist

Descarga archivos de extensión Parse Youtube Links and Create Playlist en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
URL Oficial https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Descripción Parse Youtube links in the current page and create a Youtube playlist.
Tamaño del Archivo 32.89 KB
Cantidad de Instalaciones 725
Versión Actual 0.1
Última Actualización 2018-03-01
Fecha de Publicación 2018-03-01
Calificación 3.70/5 Total de 10 Calificaciones
Desarrollador Deepak
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}