Last active
September 9, 2023 02:41
-
-
Save Nick-Gabe/84dcd2b4d07bd0474fa631dd5006bb91 to your computer and use it in GitHub Desktop.
Código para aceitar todas as conexões do linkedin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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 |
@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
Como executar esse tipo de codigo Nick? E como vai funcionar a questão da autenticação.