Playlist Exporter

Export Playlists.

What is Playlist Exporter?

Playlist Exporter is a Chrome extension developed by http://dblk.org, and its main feature is "Export Playlists.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Playlist Exporter Extension CRX File

Download Playlist Exporter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Playlist Exporter Playlist Exporter
ID ipdibomfjmifchhealolhhmocbfnjemj
Official URL https://chrome.google.com/webstore/detail/playlist-exporter/ipdibomfjmifchhealolhhmocbfnjemj
Description Export Playlists.
File Size 26.15 KB
Installation Count 1,382
Current Version 0.2.9
Last Updated 2016-04-19
Publish Date 2016-04-19
Rating 2.31/5 Total 42 Ratings
Developer http://dblk.org
Payment Type free
Extension Website http://dblk.org/pexporter
Supported Languages 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"
    ]
}