Skip to content

Instantly share code, notes, and snippets.

@rohitsharmaj7
Created October 18, 2019 09:55
Show Gist options
  • Save rohitsharmaj7/25facbbafe4e14658c371fb3aee4c45f to your computer and use it in GitHub Desktop.
Save rohitsharmaj7/25facbbafe4e14658c371fb3aee4c45f to your computer and use it in GitHub Desktop.
A script to like the feeds automatically.
var scroll = setInterval(function(){
window.scrollBy(0,500);
var list = document.querySelectorAll('[aria-label="Like"]');
for(i=0;i<list.length;i++)
{
list[i].click();
}
},2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment