Playlist Exporter

Export Playlists.

Wat is Playlist Exporter?

Playlist Exporter is een Chrome-extensie ontwikkeld door http://dblk.org, en de belangrijkste functie is "Export Playlists.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Playlist Exporter

Download Playlist Exporter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Export playlists in CSV or Groovylists file.
Currently you can only export playlist from Deezer.com.

Visit Deezer, and go to any album or playlist, you'll see a button "Export" close to "Listen" (see screenshots).

Simply click on it, and you'll retrieve your playlist.

Open with your favorite spreadsheet software or copy/paste to groovylists to import.                    

Basisinformatie over de Extensie

Naam Playlist Exporter Playlist Exporter
ID ipdibomfjmifchhealolhhmocbfnjemj
Officiële URL https://chrome.google.com/webstore/detail/playlist-exporter/ipdibomfjmifchhealolhhmocbfnjemj
Beschrijving Export Playlists.
Bestandsgrootte 26.15 KB
Aantal Installaties 1,382
Huidige Versie 0.2.9
Laatst Bijgewerkt 2016-04-19
Publicatiedatum 2016-04-19
Beoordeling 2.31/5 Totaal 42 Beoordelingen
Ontwikkelaar http://dblk.org
Betalingswijze free
Extensiewebsite http://dblk.org/pexporter
Ondersteunde Talen en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "0.2.9",
    "manifest_version": 2,
    "description": "__MSG_desc__",
    "default_locale": "en",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.deezer.com\/*"
            ],
            "css": [
                "pExport.css"
            ],
            "js": [
                "pExport.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.deezer.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "pExport-0.2.9.js",
        "img\/pExport.png"
    ]
}