-
-
Save timelf123/a33721a1396a0cc12e658bf7871953aa to your computer and use it in GitHub Desktop.
Instagram script for followers
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
| /* source https://www.youtube.com/watch?v=UKi1NwqKCz8 | |
| _aj7mu _r4e4p _95tat _o0442 | |
| */ | |
| var jq = document.createElement('script'); | |
| jq.src = "//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"; | |
| document.getElementsByTagName('head')[0].appendChild(jq); | |
| jQuery.noConflict() | |
| window.setInterval(function(){ | |
| var x = 0; | |
| $("button:contains('Following')").each( | |
| function(){ | |
| if(x==3) return false; | |
| $(this).trigger("click"); | |
| $('._4gt3b').scrollTop($('._4gt3b')[0].scrollHeight); | |
| x++; | |
| } | |
| ) | |
| $('._4gt3b').scrollTop($('._4gt3b')[0].scrollHeight); console.log('loop'); | |
| }, 60000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment