Playlist Exporter
Export Playlists.
Apa itu Playlist Exporter?
Playlist Exporter adalah ekstensi Chrome yang dikembangkan oleh http://dblk.org, dan fitur utamanya adalah "Export Playlists.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Playlist Exporter
Unduh file ekstensi Playlist Exporter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | ipdibomfjmifchhealolhhmocbfnjemj |
URL Resmi | https://chrome.google.com/webstore/detail/playlist-exporter/ipdibomfjmifchhealolhhmocbfnjemj |
Deskripsi | Export Playlists. |
Ukuran File | 26.15 KB |
Jumlah Instalasi | 1,382 |
Versi Saat Ini | 0.2.9 |
Terakhir Diperbarui | 2016-04-19 |
Tanggal Publikasi | 2016-04-19 |
Penilaian | 2.31/5 Total 42 Penilaian |
Pengembang | http://dblk.org |
Tipe Pembayaran | free |
Situs Ekstensi | http://dblk.org/pexporter |
Bahasa yang Didukung | 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" ] } |