playlistk

Create playlists that can combine Youtube videos, Soundcloud songs, and Bandcamp songs, into one list or multiple lists.

Was ist playlistk?

playlistk ist eine Chrome-Erweiterung, die von playlistk entwickelt wurde, und ihr Hauptmerkmal ist "Create playlists that can combine Youtube videos, Soundcloud songs, and Bandcamp songs, into one list or multiple lists.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

playlistk-Erweiterungs-CRX-Datei herunterladen

Laden Sie playlistk-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

                        Be able to create one playlist with Youtube, Soundcloud, and Bandcamp. Instead of having to have multiple accounts for all 3 and have 3 separate playlists.

Just browse to any Youtube video, Soundcloud song, or Bandcamp song, click the icon on the top right of the browser to add it to your playlist and start listening or watching.

A Few Features:
Shuffling
Repeat the same track over and over
View Counter
Share a playlist                    

Grundlegende Informationen zur Erweiterung

Name playlistk playlistk
ID ipmnaonhgnflgconkogoldlolgmmmnam
Offizielle URL https://chrome.google.com/webstore/detail/playlistk/ipmnaonhgnflgconkogoldlolgmmmnam
Beschreibung Create playlists that can combine Youtube videos, Soundcloud songs, and Bandcamp songs, into one list or multiple lists.
Dateigröße 40.78 KB
Installationsanzahl 53
Aktuelle Version 1.1
Letztes Update 2016-06-29
Veröffentlichungsdatum 2016-06-29
Bewertung 2.60/5 Insgesamt 5 Bewertungen
Entwickler playlistk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://playlistk.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "playlistk",
    "description": "Create playlists that can combine Youtube videos, Soundcloud songs, and Bandcamp songs, into one list or multiple lists.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "scripts.js",
                "jquery.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/"
    ]
}