Skip to content

The LinkedIn Auto-Connect Bot is a simple browser-based automation script designed to streamline your networking efforts on LinkedIn. With minimal setup, it automates the process of sending connection requests, saving you time and effort. Ideal for professionals looking to expand their network efficiently while maintaining focus on other tasks.

License

Notifications You must be signed in to change notification settings

DoingFedTime/LinkedInAuto-ConnectBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

🤖 LinkedIn Auto-Connect Bot

Automate your LinkedIn networking like a pro! This lightweight script helps you send connection requests on autopilot—all within your browser. 🚀 NO DOWNLOAD NEEDED! ⭐ if this helped.


🎥 Demo

🤖 LinkedIn Auto-Connect Bot

🔥 What This Bot Does

This script eliminates repetitive manual tasks by:

  • Automatically clicking "Connect" on target profiles.
  • Sending requests without notes for speed and simplicity.
  • Navigating to the next page when the current one is complete.
  • Repeating the process until stopped or when no more connections are available.

🛠️ Prerequisites

  • A LinkedIn account
  • A browser
  • IQ north of 60

📋 How to Use

  1. Go to LinkedIn and search for your desired audience (e.g., “Data Scientists,” “Product Managers”).
  2. Open Chrome Developer Tools:
    • Press F12 or right-click the page and select Inspect.
  3. Navigate to the Console Tab.
  4. Copy and paste the following script into the console:
async function linkedInBot() {
    const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));

    for (let i = 0; i < 1000; i++) {
        try {
            const connectButton = document.querySelector('button[aria-label*="Invite"][aria-label*="connect"]');
            if (connectButton) {
                connectButton.click();
                await sleep(1500);
                const sendButton = document.querySelector('button[aria-label="Send without a note"]');
                if (sendButton) {
                    sendButton.click();
                    await sleep(1500);
                }
            } else {
                const nextButton = document.querySelector('button[aria-label="Next"]');
                if (nextButton) {
                    nextButton.click();
                    await sleep(3000);
                    console.log("Moving to the next page...");
                } else {
                    console.log("No more connections available.");
                    break;
                }
            }
        } catch (error) {
            console.error("An error occurred:", error);
        }
    }
}

linkedInBot();

To stop it refresh the page (hit F5).

⚠️ Important Notes

  • Use responsibly and follow LinkedIn's Terms of Service.
  • Be aware of LinkedIn's daily connection request limits—don’t overuse the tool.
  • Adding personalized notes to connection requests can improve acceptance rates.
  • This tool is provided for educational purposes only.

⭐ Pro Tips for Success

  • Refine your search results to target specific, relevant connections.
  • Take breaks between automation sessions to reduce the risk of detection.
  • Regularly review and manage your pending requests to avoid exceeding limits.
  • Adjust the sleep timings in the script for a more natural, human-like behavior.

🚫 Disclaimer

This tool is designed for educational purposes only.
By using this script, you accept full responsibility for any risks, including account restrictions.
The creator is not liable for any consequences resulting from misuse of this tool.


🌟 Found this Useful?

Give this repo a to show your support!

Follow me on LinkedIn, Twitter/X, Instagram, YouTube, and Rumble for more tips and tricks on automation and productivity. Visit my website for additional resources.

Happy networking! 🎯

About

The LinkedIn Auto-Connect Bot is a simple browser-based automation script designed to streamline your networking efforts on LinkedIn. With minimal setup, it automates the process of sending connection requests, saving you time and effort. Ideal for professionals looking to expand their network efficiently while maintaining focus on other tasks.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published