Skip to content

Instantly share code, notes, and snippets.

@jadeallencook
Created January 27, 2019 23:42
Show Gist options
  • Save jadeallencook/a56a7dbea52995634a2c4940503b6b0d to your computer and use it in GitHub Desktop.
Save jadeallencook/a56a7dbea52995634a2c4940503b6b0d to your computer and use it in GitHub Desktop.
Copy playlists faster by only having to click the video number!
document.querySelectorAll('#index').forEach(elem => {
elem.style.cursor = 'pointer';
elem.onclick = function() {
menu = this.parentNode;
this.style.color = 'red';
menu.querySelectorAll('#button')[0].click();
document.querySelectorAll('paper-listbox#items')[0].children[1].click();
document.querySelector('.checkbox-height[title="YOUR PLAYLIST NAME"]').click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment