Parse Youtube Links and Create Playlist

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

Co to jest Parse Youtube Links and Create Playlist?

Parse Youtube Links and Create Playlist to rozszerzenie Chrome opracowane przez Deepak, a jego główną funkcją jest „Parse Youtube links in the current page and create a Youtube playlist.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Parse Youtube Links and Create Playlist

Pobierz pliki rozszerzeń Parse Youtube Links and Create Playlist w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Parse Youtube Links and Create Playlist Parse Youtube Links and Create Playlist
ID lelcdhabkkjhffonhfcfflbjaekdmege
Oficjalny URL https://chromewebstore.google.com/detail/parse-youtube-links-and-c/lelcdhabkkjhffonhfcfflbjaekdmege
Opis Parse Youtube links in the current page and create a Youtube playlist.
Rozmiar pliku 32.89 KB
Liczba instalacji 725
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2018-03-01
Data Publikacji 2018-03-01
Ocena 3.70/5 Łącznie 10 Oceny
Deweloper Deepak
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}