JavaScript is the 'Language of Browsers'.
We can accept all the Linkedin requests using a single line of code
We get so many connection requests every day. It is a tedious task to accept them one by one.
On the console tab, type the following code. This will accept all the connection requests in a jiffy.
var x = document.getElementsByClassName("invitation-card__action-btn artdeco-button artdeco-button--2 artdeco-button--secondary ember-view");
for(var i=0;i < x.length;i++)
{
x[i].click();
}
All the connection requests will be accepted in a second or so.
This is cool. No?
Try it yourself!
Note: This works for Instagram too!