Playlist Exporter
Export Playlists.
ما هو Playlist Exporter؟
Playlist Exporter هو إضافة Chrome تم تطويرها بواسطة http://dblk.org، والميزة الرئيسية لها هي "Export Playlists.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Playlist Exporter
قم بتنزيل ملفات الامتداد Playlist Exporter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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.
معلومات أساسية عن التمديد
الاسم | |
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" ] } |