Skip to content

Instantly share code, notes, and snippets.

@1kko
1kko / gist:40ca6dfc853099e6055e92a90bed937e
Last active April 12, 2024 17:32
JQuery Bugs Music List to Json - 벅스 뮤직 플레이리스트 내보내기
// Chrome 웹브라우저에서 벅스 로그인 후 목록보이는 상태에서 F12키를 누른후
// Console창에 아래 코드 복붙 후 엔터.
// 나오는 리스트는 http://www.playlist-converter.net/ 에 텍스트 붙여넣기 해서 원하는 음악사이트로 플레이리스트를 이동.
var output=[]
$('table.list.trackList > tbody > tr').each(function () {
title = $(this).find('th > p > a').attr('title');
// sometimes title is disabled due to the copyright issues. This case just get the text.
if (title === undefined) {
title = $(this).find('th > p').text().trim();