Playlist Exporter
Export Playlists.
Playlist Exporterคืออะไร?
Playlist Exporter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://dblk.org และคุณลักษณะหลักของมันคือ "Export Playlists."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Playlist Exporter
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } |