Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save THEMVFFINMAN/1a194439a9f765ce976fa02d582a632c to your computer and use it in GitHub Desktop.
Save THEMVFFINMAN/1a194439a9f765ce976fa02d582a632c to your computer and use it in GitHub Desktop.
/*
Lets you clean up your Garbage Youtube Recommendations
This just clicks the 'Not Interested' button on each video in your youtube recommendations.
Probably doesn't work if you are recommended a playlist.
*/
for (let i = 0; i < 10; i++)
{
interval(i);
}
function interval(i) {
setTimeout(function() {
var newnumber = i + 5 + (2*i);
document.getElementsByClassName("style-scope ytd-menu-renderer")[newnumber].click();
document.getElementsByClassName("style-scope ytd-menu-service-item-renderer")[9].click();
}, 500 * i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment