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
官方網址 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"
    ]
}