Playlist Exporter

Export Playlists.

什么是Playlist Exporter?

Playlist Exporter是由http://dblk.org开发的Chrome扩展程序,该扩展的主要功能是“Export Playlists.”。

扩展截图

screenshot
screenshot
screenshot

下载Playlist Exporter扩展crx文件

下载Playlist Exporter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Playlist Exporter Playlist Exporter
ID ipdibomfjmifchhealolhhmocbfnjemj
官方URL https://chrome.google.com/webstore/detail/playlist-exporter/ipdibomfjmifchhealolhhmocbfnjemj
简介 Export Playlists.
文件大小 26.15 KB
安装次数 1,382
当前版本 0.2.9
更新时间 2016-04-19
上架时间 2016-04-19
评分 2.31/5 共42次评分
开发者 http://dblk.org
付费类型 free
扩展官网 http://dblk.org/pexporter
支持的语言 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"
    ]
}