Skip to content

Instantly share code, notes, and snippets.

@Nick-Gabe
Last active September 9, 2023 02:41
Show Gist options
  • Save Nick-Gabe/84dcd2b4d07bd0474fa631dd5006bb91 to your computer and use it in GitHub Desktop.
Save Nick-Gabe/84dcd2b4d07bd0474fa631dd5006bb91 to your computer and use it in GitHub Desktop.
Código para aceitar todas as conexões do linkedin
(function (interval = 0) {
document
.querySelectorAll('[class="artdeco-button artdeco-button--2 artdeco-button--secondary ember-view invitation-card__action-btn"]')
.forEach((btn, i) => setTimeout(() => btn.click(), i * interval));
})(1000)
// You can change the 1000, it will be the interval to avoid spamming all at once
@Nick-Gabe
Copy link
Author

Nick-Gabe commented Dec 11, 2022

@mrlonmra
Como executar esse tipo de codigo Nick? E como vai funcionar a questão da autenticação.

Para executar o código, você cola ele no navegador e prontinho

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment