Chrome Playlist

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

¿Qué es Chrome Playlist?

Chrome Playlist es una extensión de Chrome desarrollada por Bryan Chen, y su función principal es "Make a playlist of youtube videos based on a bookmark folder.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Chrome Playlist

Descarga archivos de extensión Chrome Playlist en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Chrome Playlist Chrome Playlist
ID dnodaodnfnledpfmlflemmimlpebigbc
URL Oficial https://chromewebstore.google.com/detail/chrome-playlist/dnodaodnfnledpfmlflemmimlpebigbc
Descripción Make a playlist of youtube videos based on a bookmark folder.
Tamaño del Archivo 41.46 KB
Cantidad de Instalaciones 91
Versión Actual 1.0.3
Última Actualización 2019-04-26
Fecha de Publicación 2019-04-26
Desarrollador Bryan Chen
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}