[Script] Growing your LinkedIn Profile! Easy 500+ Connections

How hard would it be to make a command/plugin to visit a list of connections/profiles?

Pretty easy I guess. Within one day it can be done. I'm working to turn this script into an extension and It is almost done. I can check if it is possible to add these functionalities you mentioned.

Is it possible to exclude people by company, past company, location or any other targeting?
My recommendations are full of retards from my previous school, were 60-70% of students were drug addicts. Thank you in advance!

I guess not. Your suggested connections are based in your current connections, you can try to manually diversify your connections pool and see if you get more relevant suggestions. You can filter by occupation, tho. I can add a line to filter that later on my upcoming extension.
 
Where can I donate to your efforts? I wonder why bot makers and developers on here don't use kickstarter to create some of these ideas?

Just made a suggestion for this https://www.blackhatworld.com/seo/b...re-should-have-a-kick-starter-account.915725/

Just finished the propotype, I'm publishing it today on Chrome store and will let you know so you can try it out and contribute. Just a preview if you are curious:

41c83d3c3a02423289d188d2f71af38e.png
 
Tried it but it won't work for me.. I don't know what's going on. Pissin me off
 
I would be wary of sharing it on the store, don't want Linkedin catching on. I would change the title and description not to mention LI...
 
Tried it but it won't work for me.. I don't know what's going on. Pissin me off

Your console window must be returning an error, if you can find that error and show me we can figure out what's going on.
 
what an awesome hint you shared with us, tons of appreciations, great man !!
 
I've developed this Extension using this code and need beta testers, who wants to help? :rolleyes:
 
im in, still haven't figure what the hell is going on but i'll show you the errors
 
I am in as well, even because it actually didn't work for me so far with the other method, perhaps with the extension will be better.. btw great job @BrazenBull !!!
 
im in, still haven't figure what the hell is going on but i'll show you the errors

I am in as well, even because it actually didn't work for me so far with the other method, perhaps with the extension will be better.. btw great job @BrazenBull !!!

LinkedIn had a small update and a few hidden labels in their website elements changed, I had to update the Extension to work correctly now. But if you guys still prefer the good old script, I've updated it too:


1. Log in to the account you want to get new connections;
2. Go to "My Network";
3. Right-click on the page and click in "Inspect" then click on the "Console" tab.
4. Copy and paste the following code in your console:

Code:
setInterval(function() { window.scrollTo(0, document.body.scrollHeight); }, 2000);

5. Let the page scroll down automatically for a while.
4. When the page reaches its end. Copy and paste in your console the code:

Code:
jQuery('.button-secondary-medium').each(function(index, value) {
setTimeout(function() {
jQuery(value).trigger('click');
}, index * 1000);
});

5. Let it work for a few minutes, get a coffee or just watch while it add some people.
6. Don't use it too often. Otherwise, you might be flagged by Linkedin. I recommend doing it once a week, if you don't want to take too much risk.
 
You can view profiles 100-200 per day. I would venture you can add about 100 every other day without tripping alarms...
 
Something that would help not get flagged is if somehow the plugin had some memory dump to retrieve details about who you last try to connect with and to skip over their profiles. I noticed that when I did this the 2nd time, it hit up people that didn't connect with me the first round over- which could get you in trouble for spamming etc.

Also to have a random delay to click the connect button would help too!

Sorry if these are too many suggestions.
 
Last edited:
Thought of another function..endorsing people for skills - would be great if I could run this on another tab while browsing, 10-25% endorse back.
 
Didn't work out for me, am i doing something wrong? :confused:

There are two possibilities, or you are not using the updated script, or your LinkedIn interface didn't update yet, in the second case you must use the code for the old interface.

Just use:

Code:
$('.people-cards-list button.bt-request-buffed').each(function (index, button) { button.click() });

Instead of:

Code:
jQuery('.button-secondary-medium').each(function(index, value) {
setTimeout(function() {
jQuery(value).trigger('click');
}, index * 1000);
});

Or you can use the GOOGLE CHROME EXTENSION that I have developed that does all the job you ya.
 
Back
Top