LinkedIn All Pending Connection Requests withdraw in single click

 LinkedIn have an option to withdraw the connection requests you have sent and still pending to be accepted. You can see all the pending requests. But if you want to withdraw a large number of connection requests you have sent, manually doing it is a tedious task and time-consuming.


Don't Worry Buddies, I make a small JavaScript script which you can run on your browser console that automates the process and withdraw all your pending requests in a second.


Follow some simple steps provided below :


Open your Chrome browser (Chrome is used by me).

Go to this page where you can see all your pending requests or Click me

Right click on the page and select Inspect. ([Ctrl+Shift+i] on Chrome)

Select the Console tab.

Copy and paste this script inside the console and press Enter to run the code.





var button1 = document.getElementsByClassName("invitation-card__action-btn artdeco-button artdeco-button--muted artdeco-button--3 artdeco-button--tertiary ember-view")

var button2 = document.getElementsByClassName("artdeco-modal__confirm-dialog-btn artdeco-button artdeco-button--2 artdeco-button--primary ember-view")

setInterval(()=>{

    for(var i=0;i<button1.length;i++){

        button1[i].click()

        button2[0].click()}},1000)

Comments

Popular Posts