Chrome Playlist

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

Was ist Chrome Playlist?

Chrome Playlist ist eine Chrome-Erweiterung, die von Bryan Chen entwickelt wurde, und ihr Hauptmerkmal ist "Make a playlist of youtube videos based on a bookmark folder.".

Erweiterungsscreenshots

screenshot

Chrome Playlist-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Playlist-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Chrome Playlist Chrome Playlist
ID dnodaodnfnledpfmlflemmimlpebigbc
Offizielle URL https://chromewebstore.google.com/detail/chrome-playlist/dnodaodnfnledpfmlflemmimlpebigbc
Beschreibung Make a playlist of youtube videos based on a bookmark folder.
Dateigröße 41.46 KB
Installationsanzahl 91
Aktuelle Version 1.0.3
Letztes Update 2019-04-26
Veröffentlichungsdatum 2019-04-26
Entwickler Bryan Chen
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}