[Easy Script] New script to grow your LinkedIn profile to 500+!

Very interesting, i was able to automate automatic endorsements, not sure why trial is not working for you. :( i think OP script is very good and probably it is the best choice to do it faster with no delay, however i want to be safe so i set a delay between connects

Automating endorsements was easy, but not worth it imo. You only have so much activity you can do in a given day on that site before it gets flagged, and the percentage endorsement returns were nil. I'd rather use that time to expand connections ..
 
Automating endorsements was easy, but not worth it imo. You only have so much activity you can do in a given day on that site before it gets flagged, and the percentage endorsement returns were nil. I'd rather use that time to expand connections ..
I get about 5 return endorsements per day which is pretty ok for considering my account is relatively new. What do you think is a trigger for flagging? I tried a lot of settings and never got a warning or anything but try to keep it not too much.
 
Very interesting, i was able to automate automatic endorsements, not sure why trial is not working for you. :( i think OP script is very good and probably it is the best choice to do it faster with no delay, however i want to be safe so i set a delay between connects
Please how do you set delay between connects
 
Please how do you set delay between connects
This only applies to the extension I mentioned - Linked Helper. There is a special setting in it that allows customising delays.

UW45tbwKRXm82a4NNLLKGg.jpeg
 
I just came back to share appreciation that @BrazenBull and yourself put into this code. I have been using it casually over the past couple of months.
My network is growing healthily and now I will be trying to leverage my network to source new clients & traffic to my new website.

Yes, I could have done the same manually, however, this has saved a lot of time!
Thank you so much.
 
will this code still work? i read that many of these apps stopped working after an update...
 
Linkedin Helper is crap.... Manually I can connect with more than 400 profiles in a day..... I have done that severally even faster than a J'script and also with perfect human reactions......:(
 
I wonder if there is a similar script but for IG. It's like you open the account from PC, click on a particular account which you want to grab its followers and the script would auto follow that specific account follower!
 
Hi!

For everyone that has asked about if it is working, yes, it is, I have used it today without any problem. I have been a lot of time very busy to improve it, but today I have been working on it and I have a new script to connect with people in a specific city and also to send a custom message when connecting, I will post it tonight after some more testing.
 
I've been using this as well. Great to hear you made the alteration, I noticed that sending a message will slow the process down because of the message spam filters. Even if you had spinning capability, the number connection requests would he limited compared to just connecting outright. Either way great addition!
 
For some reason this code doesn't work for me. Anyways thanks OP for taking an effort and sharing this code. A big help!

I will wait for the new code update by OP later today and will try that out.
 
Hi!

For everyone that has asked about if it is working, yes, it is, I have used it today without any problem. I have been a lot of time very busy to improve it, but today I have been working on it and I have a new script to connect with people in a specific city and also to send a custom message when connecting, I will post it tonight after some more testing.
waiting!
 
Hi!

For everyone that has asked about if it is working, yes, it is, I have used it today without any problem. I have been a lot of time very busy to improve it, but today I have been working on it and I have a new script to connect with people in a specific city and also to send a custom message when connecting, I will post it tonight after some more testing.

26om6x.jpg
 
@The Curator ready! ;)

New Script!

A lot of people were asking me for another script, one where you could go to LinkedIn, search for a company, place, whatever and connect with all the people, sending them a custom message.

Well, now it is done!

Note: If you just want to grow your connections, I recommend to check my first script, it is here.

How to use this script?
  1. Log in to the LinkedIn account
  2. Do a search (like New York or Google) and wait until the results page loads
  3. Right-click on the page and click on "Inspect" (or just press Ctrl + Shift + I)
  4. There, go to the "Console" tab
  5. Copy and paste the following code:

    Code:
    totalConnectionsDone=0;
    
    canRun=1;
    
    
    
    function connectWithMsg(message,connections){
    
    $('.search-result__actions--primary').each(function(i, obj) {
    
        
    if(totalConnectionsDone<connections || connections==0){
            
    $(this).trigger('click');
            
    $('#li-modal-container .send-invite  .modal-wormhole-content section div .send-invite__actions .button-secondary-large').trigger('click');
            _box=$('#li-modal-container .send-invite .modal-wormhole-content div section div');
            
    _box.find('.ph4 label div textarea').val(message);
            
    _box.find('.send-invite__actions .button-primary-large').trigger('click');
            
    totalConnectionsDone++;
        }
    });
    }
    
    
    
    
    function executeScript(message,connections){
    
    
    numberOfPage=0;
    
    
    
    while(canRun==1){
    
    if(numberOfPage==0){
        connectWithMsg(message,connections);
    }
    
    if($(".next").length==1){
        $(".next").trigger('click');
            numberOfPage++;
    }else{
        canRun=0;
    }
    
    setTimeout(
      function()
      {
        connectWithMsg(message,connections);
      }, 5000);
    }
    
    console.log("Script finished!");
    console.log("Messages sent: "+totalConnectionsDone);
    
    }
    
    // Do not edit anything above these lines!
    // This script is "moreless" working, I have to improve it can run smoothly
    // but it does its function.
    // What is its function?
    // Maybe you have seen my first script for LinkedIn, where you could people to grow your network.
    // Now with this script, you can target your connections: you just need to do a search on LinkedIn
    // And in that page execute this script and ready.
    // Just add the message you want to send them and the number of connections you want to do as
    // maximum (0 is equal to all the connections that are possible to do)
    executeScript("Hi! I would like to connect with you!",0);

  6. Now just config it. You just need to go to the last line of that script and change Hi! I would like to connect with you! with your custom message. Also, I suggest changing 0 to a small number (like 100), since if you set 0, the script will connect (or at least try) with all the results (possibly more than 100000!). After that, just press enter and let the script does its work!
  7. When the script finishes, if everything goes fine, you will see two messages, one saying the script finished and other with the number of messages sent.

This is a complex script so maybe it has some bugs, I will try to fix them but I will need if you find some to tell me!

Hope this script will be useful for you, if you are looking for others, just tell me here!

Quick note: To avoid spam filters, after every page, the script will wait 5 seconds before start sending new messages, you can increase or decrease that time changing the 5000 number in the script to another number (5 seconds = 5000 milliseconds).
 
@The Curator ready! ;)

New Script!

A lot of people were asking me for another script, one where you could go to LinkedIn, search for a company, place, whatever and connect with all the people, sending them a custom message.

Well, now it is done!

Note: If you just want to grow your connections, I recommend to check my first script, it is here.

How to use this script?
  1. Log in to the LinkedIn account
  2. Do a search (like New York or Google) and wait until the results page loads
  3. Right-click on the page and click on "Inspect" (or just press Ctrl + Shift + I)
  4. There, go to the "Console" tab
  5. Copy and paste the following code:

    Code:
    totalConnectionsDone=0;
    
    canRun=1;
    
    
    
    function connectWithMsg(message,connections){
    
    $('.search-result__actions--primary').each(function(i, obj) {
    
        
    if(totalConnectionsDone<connections || connections==0){
            
    $(this).trigger('click');
            
    $('#li-modal-container .send-invite  .modal-wormhole-content section div .send-invite__actions .button-secondary-large').trigger('click');
            _box=$('#li-modal-container .send-invite .modal-wormhole-content div section div');
            
    _box.find('.ph4 label div textarea').val(message);
            
    _box.find('.send-invite__actions .button-primary-large').trigger('click');
            
    totalConnectionsDone++;
        }
    });
    }
    
    
    
    
    function executeScript(message,connections){
    
    
    numberOfPage=0;
    
    
    
    while(canRun==1){
    
    if(numberOfPage==0){
        connectWithMsg(message,connections);
    }
    
    if($(".next").length==1){
        $(".next").trigger('click');
            numberOfPage++;
    }else{
        canRun=0;
    }
    
    setTimeout(
      function()
      {
        connectWithMsg(message,connections);
      }, 5000);
    }
    
    console.log("Script finished!");
    console.log("Messages sent: "+totalConnectionsDone);
    
    }
    
    // Do not edit anything above these lines!
    // This script is "moreless" working, I have to improve it can run smoothly
    // but it does its function.
    // What is its function?
    // Maybe you have seen my first script for LinkedIn, where you could people to grow your network.
    // Now with this script, you can target your connections: you just need to do a search on LinkedIn
    // And in that page execute this script and ready.
    // Just add the message you want to send them and the number of connections you want to do as
    // maximum (0 is equal to all the connections that are possible to do)
    executeScript("Hi! I would like to connect with you!",0);

  6. Now just config it. You just need to go to the last line of that script and change Hi! I would like to connect with you! with your custom message. Also, I suggest changing 0 to a small number (like 100), since if you set 0, the script will connect (or at least try) with all the results (possibly more than 100000!). After that, just press enter and let the script does its work!
  7. When the script finishes, if everything goes fine, you will see two messages, one saying the script finished and other with the number of messages sent.

This is a complex script so maybe it has some bugs, I will try to fix them but I will need if you find some to tell me!

Hope this script will be useful for you, if you are looking for others, just tell me here!

Quick note: To avoid spam filters, after every page, the script will wait 5 seconds before start sending new messages, you can increase or decrease that time changing the 5000 number in the script to another number (5 seconds = 5000 milliseconds).

Dude you are the fucking man! Is there a way to connect without sending a message - to avoid message spam filters?
 
@The Curator yes! Just replace in the script the "button-secondary-large" with "button-primary-large"

Edit: Here I left a improved script to connect without sending messages:

Code:
totalConnectionsDone=0;

canRun=1;



function connectWithMsg(message,connections){

$('.search-result__actions--primary').each(function(i, obj) {

    
if(totalConnectionsDone<connections || connections==0){
        
$(this).trigger('click');
        
$('#li-modal-container .send-invite  .modal-wormhole-content section div .send-invite__actions .button-primary-large').trigger('click');
        
totalConnectionsDone++;
    }
});
}




function executeScript(message,connections){


numberOfPage=0;



while(canRun==1){

if(numberOfPage==0){
    connectWithMsg(message,connections);
}

if($(".next").length==1){
    $(".next").trigger('click');
        numberOfPage++;
}else{
    canRun=0;
}

setTimeout(
  function()
  {
    connectWithMsg(message,connections);
  }, 5000);
}

console.log("Script finished!");
console.log("Messages sent: "+totalConnectionsDone);

}

// Do not edit anything above these lines!
// This script is "moreless" working, I have to improve it can run smoothly
// but it does its function.
// What is its function?
// Maybe you have seen my first script for LinkedIn, where you could people to grow your network.
// Now with this script, you can target your connections: you just need to do a search on LinkedIn
// And in that page execute this script and ready.
// Just add the message you want to send them and the number of connections you want to do as
// maximum (0 is equal to all the connections that are possible to do)
executeScript("",0);
 
Back
Top