Parse Youtube Links and Create Playlist

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

O que é Parse Youtube Links and Create Playlist?

Parse Youtube Links and Create Playlist é uma extensão do Chrome desenvolvida por Deepak, e sua principal característica é "Parse Youtube links in the current page and create a Youtube playlist.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Parse Youtube Links and Create Playlist

Baixe arquivos de extensão Parse Youtube Links and Create Playlist no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição Parse Youtube links in the current page and create a Youtube playlist.
Tamanho do Arquivo 32.89 KB
Contagem de Instalações 725
Versão Atual 0.1
Última Atualização 2018-03-01
Data de Publicação 2018-03-01
Classificação 3.70/5 Total de 10 Avaliações
Desenvolvedor Deepak
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}