Playlist Exporter
Export Playlists.
Playlist Exporter क्या है?
Playlist Exporter http://dblk.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export Playlists."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Playlist Exporter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |