Chrome Playlist

Make a playlist of youtube videos based on a bookmark folder.

O que é Chrome Playlist?

Chrome Playlist é uma extensão do Chrome desenvolvida por Bryan Chen, e sua principal característica é "Make a playlist of youtube videos based on a bookmark folder.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Chrome Playlist

Baixe arquivos de extensão Chrome 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

                        Select a bookmark folder containing lots of youtube links through the pop-up interface and then click play! A new tab will open that automatically cycles through the bookmarked videos in the folder as they end, acting as a custom playlist through youtube. You can use the popup to skip to a new randomly selected song as well.                    

Informações Básicas da Extensão

Nome Chrome Playlist Chrome Playlist
ID dnodaodnfnledpfmlflemmimlpebigbc
URL Oficial https://chromewebstore.google.com/detail/chrome-playlist/dnodaodnfnledpfmlflemmimlpebigbc
Descrição Make a playlist of youtube videos based on a bookmark folder.
Tamanho do Arquivo 41.46 KB
Contagem de Instalações 91
Versão Atual 1.0.3
Última Atualização 2019-04-26
Data de Publicação 2019-04-26
Desenvolvedor Bryan Chen
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.3",
    "name": "Chrome Playlist",
    "description": "Make a playlist of youtube videos based on a bookmark folder.",
    "icons": {
        "16": "images\/note16.png",
        "48": "images\/note48.png",
        "128": "images\/note128.png"
    },
    "browser_action": {
        "default_icon": "images\/note128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "bookmarks",
        "https:\/\/www.youtube.com\/*"
    ]
}