Skip to content

Instantly share code, notes, and snippets.

@Ademking
Created September 20, 2018 12:52
Show Gist options
  • Select an option

  • Save Ademking/744758c86379a2c2e3454e4e15524ac5 to your computer and use it in GitHub Desktop.

Select an option

Save Ademking/744758c86379a2c2e3454e4e15524ac5 to your computer and use it in GitHub Desktop.
LinkedIn Auto Liker
/** By Adem Kouki
/** Facebook : https://facebook.com/Ademkouki.Officiel
/** GitHub : https://github.com/Ademking
/**
/** LinkedIn Auto Liker - This tool will help you to increase your Linkedin Popularity ...
/**
*/
(function() {
console.log('By Adem Kouki : https://facebook.com/Ademkouki.Officiel');
let index = 0;
window.setInterval(function(){
let btns = $('.like').not('.active');
btns.click();
index++;
console.log(index + ' like(s) clicked');
}, 5000);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment