Last active
August 9, 2016 13:38
-
-
Save Sid3y1/046c2f437c63956735b8758b161e3a3e to your computer and use it in GitHub Desktop.
linkedin growth hack cancel invitation limit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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