Advertisement
antonio_pedro

AutoLike Bot

Feb 5th, 2025 (edited)
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.31 KB | Source Code | 0 0
  1. // AutoLike bot by Antonio
  2. const likeButtons = document.querySelectorAll('a[ng-click]');
  3.  
  4. likeButtons.forEach(likeButton => {
  5.   // Verifica se o botão tem a palavra "Curtir" dentro do seu texto
  6.   if (likeButton.innerText.includes('Curtir')) {
  7.     likeButton.click();
  8.     console.log('Imagem curtida!');
  9.   }
  10. });
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement