Parse Youtube Links and Create Playlist

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

Co je Parse Youtube Links and Create Playlist?

Parse Youtube Links and Create Playlist je rozšíření Chrome vyvinuté Deepak, a jeho hlavní funkcí je „Parse Youtube links in the current page and create a Youtube playlist.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Parse Youtube Links and Create Playlist

Stáhněte si soubory rozšíření Parse Youtube Links and Create Playlist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
Oficiální URL https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Popis Parse Youtube links in the current page and create a Youtube playlist.
Velikost souboru 32.89 KB
Počet instalací 725
Aktuální Verze 0.1
Poslední Aktualizace 2018-03-01
Datum Vydání 2018-03-01
Hodnocení 3.70/5 Celkem 10 Hodnocení
Vývojář Deepak
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}