Skip to content

Instantly share code, notes, and snippets.

@fineanmol
Created May 10, 2023 18:06
Show Gist options
  • Save fineanmol/93108ef4fb7fd0af27420b83511dbf0a to your computer and use it in GitHub Desktop.
Save fineanmol/93108ef4fb7fd0af27420b83511dbf0a to your computer and use it in GitHub Desktop.
If you want to accept all invitations , input this in the console
If you want to accept all invitations , input this in the console
This has a delay of 2 Seconds on Every Invitation
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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment