Playlist Exporter

Export Playlists.

Playlist Exporter란 무엇입니까?

Playlist Exporter은(는) http://dblk.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export Playlists."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Playlist Exporter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}