Skip to content

Instantly share code, notes, and snippets.

@Sid3y1
Last active August 9, 2016 13:38
Show Gist options
  • Save Sid3y1/046c2f437c63956735b8758b161e3a3e to your computer and use it in GitHub Desktop.
Save Sid3y1/046c2f437c63956735b8758b161e3a3e to your computer and use it in GitHub Desktop.
linkedin growth hack cancel invitation limit
//linkedin cancel invitation limit
a = function (){
var n = 0;
var e = document.getElementsByClassName('entity-checkbox');
for(var i =0; i < e.length; i++) {
if (e[i].parentNode.children[1].firstChild.innerHTML.indexOf('@') != -1) {
e[i].click();
n++;
if (n == 40) break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment