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.
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.
- A LinkedIn account
- A browser
- IQ north of 60
- Go to LinkedIn and search for your desired audience (e.g., “Data Scientists,” “Product Managers”).
- Open Chrome Developer Tools:
- Press
F12
or right-click the page and select Inspect.
- Press
- Navigate to the Console Tab.
- 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).
- 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.
- 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.
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.
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! 🎯