Parse Youtube Links and Create Playlist

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

Cos'è Parse Youtube Links and Create Playlist?

Parse Youtube Links and Create Playlist è un'estensione di Chrome sviluppata da Deepak, e la sua funzione principale è "Parse Youtube links in the current page and create a Youtube playlist.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Parse Youtube Links and Create Playlist

Scarica i file di estensione Parse Youtube Links and Create Playlist in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
URL Ufficiale https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Descrizione Parse Youtube links in the current page and create a Youtube playlist.
Dimensione del File 32.89 KB
Conteggio Installazioni 725
Versione Corrente 0.1
Ultimo Aggiornamento 2018-03-01
Data di Pubblicazione 2018-03-01
Valutazione 3.70/5 Totale 10 Valutazioni
Sviluppatore Deepak
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}