Playlist Exporter
Export Playlists.
Co je Playlist Exporter?
Playlist Exporter je rozšíření Chrome vyvinuté http://dblk.org, a jeho hlavní funkcí je „Export Playlists.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Playlist Exporter
Stáhněte si soubory rozšíření Playlist Exporter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ipdibomfjmifchhealolhhmocbfnjemj |
Oficiální URL | https://chrome.google.com/webstore/detail/playlist-exporter/ipdibomfjmifchhealolhhmocbfnjemj |
Popis | Export Playlists. |
Velikost souboru | 26.15 KB |
Počet instalací | 1,382 |
Aktuální Verze | 0.2.9 |
Poslední Aktualizace | 2016-04-19 |
Datum Vydání | 2016-04-19 |
Hodnocení | 2.31/5 Celkem 42 Hodnocení |
Vývojář | http://dblk.org |
Typ Platby | free |
Webové stránky Rozšíření | http://dblk.org/pexporter |
Podporované Jazyky | 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" ] } |