How to bulk accept / reject your Linkedin connection invitations
Anmol Agarwal
Frontend Developer | MERN Stack | Supported by 23k+ Community | Medalist ?? | Helping Students and Professional in Career Enhancements
How to bulk remove or accept connection invitation
1. Go to My Network
Click "My Network" in your top screen. Alternatively you may key in this URL :?https://www.dhirubhai.net/mynetwork/
2. Under Invitations you will see this options to Ignore or Accept buttons
3. Launch Developer Tools in your Chrome browser
Go to your Chrome , and under the Developer Tools. For Windows / Mac , you can press F12 function key. Alternatively the short cut keys for Windows is "Control + Alt + I", for Mac it is "Option + Command + I". If you prefer to use the mouse instead, point to the hamburger menu (the 3 dots) on the Chrome top right corner. Click on it and the Developer Tools is in here
4. Select the Console in Developer Tools
5A . If you want to accept all invitations?, input this in the console.
var x = document.querySelectorAll('button.artdeco-button--secondary')
for (var i = 0; i < x.length; i++) {
? setTimeout(function(idx) {
? ? if (x[idx]) {
? ? ? x[idx].click();
? ? }
? }, 2000 * i, i);
}
;
This will accept all your invitations with a delay of 2 seconds. (2000 milisec).
Always keep the delay time to more than 1 second, to avoid Linkedin automation notification.
OR
5B . If you want to reject all invitations, input this in the console.
var x = document.querySelectorAll('button.artdeco-button--tertiary')
for (var i = 0; i < x.length; i++) {
? setTimeout(function(idx) {
? ? if (x[idx]) {
? ? ? x[idx].click();
? ? }
? }, 1000 * i, i);
};
This will reject all your invitations with a delay of 1 second.
That’s all it takes — a one liner script?!
Building Scalable Systems
1 年wow niceee thats what a developer do in his free time saying Netflix and chill to others
Immediate Joiner | DevOps Engineer @ Globallogic | Ex-Wiproite | DevOps | CI/CD | Git | AWS | Docker | Jenkins | K8s | Microservices | Datadog | Azure Devops | Terraform
1 年Bade log issues ??
CEO @ Cosmocloud | Ex-LinkedIn | Angel Investor | MongoDB Champion | Book Author | Patent Holder (Distributed Algorithms)
1 年While accepting all looks cool, just be aware that there is a hard connection limit of 30k on LinkedIn which cannot be crossed/upgraded. Rather than accept all, you might want only those people whose content / connection / posts, you might like, and keep "follow" as default option. Also, reject all -- you might lose a lot of opportunities if you blindly do it ?? Check, filter, then run script ????
Senior Golang Developer | Distributed Systems & Microservices | Experienced in Software Architecture, System Design, DevOps, Cloud Computing
1 年excellent trick ??, however be careful because I have seen many people get temporarily banned by doing automation like this.