🏠 Home 

Instagram Like Bot With 15 Second Time Delay

Likes The Posts Automatically From Hashtags With A 15 Second Time Delay..


Install this script?
  1. // ==UserScript==
  2. // @name Instagram Like Bot With 15 Second Time Delay
  3. // @namespace https://jackhammer-games.herokuapp.com
  4. // @version 1.0.0
  5. // @description Likes The Posts Automatically From Hashtags With A 15 Second Time Delay..
  6. // @author Jackhammer Games
  7. // @match https://www.instagram.com/
  8. // ==/UserScript==
  9. var timeBetweenLikes = 15*1000;
  10. setInterval(function(){
  11. var likeBtn = document.getElementsByClassName("wpO6b ");
  12. var nextBtn = document.querySelector(".coreSpriteRightPaginationArrow");
  13. if (likeBtn[1]){
  14. likeBtn[1].click();
  15. }
  16. nextBtn.click();
  17. },timeBetweenLikes);