Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // AutoLike bot by Antonio
- const likeButtons = document.querySelectorAll('a[ng-click]');
- likeButtons.forEach(likeButton => {
- // Verifica se o botão tem a palavra "Curtir" dentro do seu texto
- if (likeButton.innerText.includes('Curtir')) {
- likeButton.click();
- console.log('Imagem curtida!');
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement