Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Jason-time/e1a9337e9b898ec79618f3107aba0a9d to your computer and use it in GitHub Desktop.
Save Jason-time/e1a9337e9b898ec79618f3107aba0a9d to your computer and use it in GitHub Desktop.
extract youtube list
var items = document.querySelectorAll('[id=dismissable]')
items.forEach(item => {
var data = {
title: item.children[1].children[0].children[0].innerText,
link: item.children[1].children[0].children[0].children[1].href,
meta: item.children[1].children[0].children[1].innerText
};
console.log(JSON.stringify(data));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment