Sunday 18 August 2019

To follow people on Twitter

To follow people on Twitter you need to click follow again and again so don’t worry there is a shortcut. Simply go to your twitter open the following page
then go to the link of that page -> click it and press Ctrl + shift + j
this will open the console
copy the code and paste the following code
sit back and relax and let the code do the trick
//Mass following

javascript:var inputs = document.getElementsByClassName('button-text follow-text'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }

//Mass unfollowing

setInterval(function(){t=$(".following").find(".follow-button");if(!t[0]){window.scrollTo(0,$(document).height());}else{ console.log(t.attr("class")); t.trigger("click");}},100)