(41) How to Copy All The Titles And URLs From YouTube Channel (Free YouTube
Trick to copy Titles and Urls of all Videos of Youtube Channel without installing anything from your browser and then using those urls in Google Sheets. (Tested on Google Chrome & Mozilla FIr
First code used in video:
var scroll = setInterval(function(){ window.scrollBy(0, 1000)}, 1000);
Second Code used in video:
window.clearInterval(scroll); console.clear(); urls = $$('a'); urls.forEach(function(v,i,a){if (v.id=="video-title"){console.log('\t'+v.title+'\t'+v.href+'\t')}});