NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ytmonster Follow INS auto // @namespace https://www.youtube.com/channel/UCzL3j7ch8o7lbIBLYdSPVuQ?sub_confirmation=1 // @version 1.0 // @homepage https://www.youtube.com/channel/UCzL3j7ch8o7lbIBLYdSPVuQ?sub_confirmation=1 // @description Ytmonster Follow INS auto // @author Dang Thang // @match https://ytmonster.ru/task/ // @match https://www.instagram.com/* // @license MIT // @updateURL https://openuserjs.org/meta/thangdangblog/Ytmonster_Follow_INS_auto.meta.js // @copyright 2019, thangdangblog (https://openuserjs.org/users/thangdangblog) // @grant none // ==/UserScript== (function() { 'use strict'; var strUrl = window.location.href; if(strUrl.indexOf("ytmonster.ru") != -1){ var runDelay = _ =>{ setTimeout(function(){ document.querySelectorAll(".panel-body.t-list")[2].click(); document.getElementById("23").click();; document.querySelector(".btn.btn-warning.openTask").click(); var submitrun = _ =>{ setInterval(function(){ document.querySelector(".btn.btn-warning.openTask").click(); },10000); } submitrun(); },3000); } runDelay(); }else{ var runDelay2 = _ =>{ setTimeout(function(){ if(document.querySelector(".vBF20._1OSdk > button")){ document.querySelector(".vBF20._1OSdk > button").click(); } var closefunction = _ =>{ setTimeout(function(){ window.close(); },4000); } closefunction(); },3000); } runDelay2(); /* */ } })();