Member-only story

How I got 13.000 LinkedIn Followers in 2 weeks

Zahit Erdem Güzel
2 min readOct 13, 2024

--

Today I'm going to tell you about how I got 13,000 followers in LinkedIn in two weeks and how it is easy to do for anyone who has a computer and Internet.

The problem about LinkedIn is people want to connect to people instead of following them, but the connection count will also be shown as followers count so the connection procedure is actually two people following each other.

To use the system for ourselves, we will create a web bot that will click all the connection buttons for recommended people, and when it runs out of buttons, it will just load more people and try again forever.

Paste this code to your browser console and press enter to see the magic…

Code:

function clickConnectButtons() {
// Select all buttons with the text 'Connect'
let buttons = document.querySelectorAll('button span.artdeco-button__text');

// Filter the buttons for ones that have "Connect" text
let connectButtons = [...buttons].filter(span => span.textContent.trim() === 'Connect');

if (connectButtons.length > 0) {
// Click each "Connect" button
connectButtons.forEach((span, index) => {
setTimeout(() => {
span.closest('button').click(); // Click the closest parent button
console.log(`Clicked button…

--

--

Zahit Erdem Güzel
Zahit Erdem Güzel

Written by Zahit Erdem Güzel

Only interesting stuff... wait for 16.12.2024!

Responses (1)