Parse Youtube Links and Create Playlist

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

Wat is Parse Youtube Links and Create Playlist?

Parse Youtube Links and Create Playlist is een Chrome-extensie ontwikkeld door Deepak, en de belangrijkste functie is "Parse Youtube links in the current page and create a Youtube playlist.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Parse Youtube Links and Create Playlist

Download Parse Youtube Links and Create Playlist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
Officiële URL https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Beschrijving Parse Youtube links in the current page and create a Youtube playlist.
Bestandsgrootte 32.89 KB
Aantal Installaties 725
Huidige Versie 0.1
Laatst Bijgewerkt 2018-03-01
Publicatiedatum 2018-03-01
Beoordeling 3.70/5 Totaal 10 Beoordelingen
Ontwikkelaar Deepak
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}