Created
January 27, 2019 23:42
-
-
Save jadeallencook/a56a7dbea52995634a2c4940503b6b0d to your computer and use it in GitHub Desktop.
Copy playlists faster by only having to click the video number!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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