Playlist Exporter
Export Playlists.
Playlist Exporter là gì?
Playlist Exporter là một tiện ích mở rộng Chrome được phát triển bởi http://dblk.org, và tính năng chính của nó là "Export Playlists.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Playlist Exporter
Tải xuống các tệp mở rộng Playlist Exporter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ipdibomfjmifchhealolhhmocbfnjemj |
URL Chính Thức | https://chrome.google.com/webstore/detail/playlist-exporter/ipdibomfjmifchhealolhhmocbfnjemj |
Mô tả | Export Playlists. |
Kích Thước Tệp | 26.15 KB |
Số Lần Cài Đặt | 1,382 |
Phiên Bản Hiện Tại | 0.2.9 |
Cập Nhật Lần Cuối | 2016-04-19 |
Ngày Phát Hành | 2016-04-19 |
Đánh Giá | 2.31/5 Tổng số 42 Đánh Giá |
Nhà Phát Triển | http://dblk.org |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://dblk.org/pexporter |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |