Created
October 18, 2019 09:55
-
-
Save rohitsharmaj7/25facbbafe4e14658c371fb3aee4c45f to your computer and use it in GitHub Desktop.
A script to like the feeds automatically.
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
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