Facebook automatic codes


SUBMITTED BY: asimkhan034

DATE: Aug. 23, 2016, 2:07 p.m.

FORMAT: Text only

SIZE: 454 Bytes

HITS: 755

  1. Codes to automate FB
  2. Accept all Friends requests
  3. var confirmButton = document.getElementsByTagName("Button"); for(var x = 0 ; x <confirmButton.length ; x++){ if(confirmButton[x].textContent == "Confirm" ){ confirmButton[x].click() } }
  4. Invites all friends to a page
  5. var confirmButton = document.getElementsByTagName("a"); for(var x = 0 ; x <confirmButton.length ; x++){ if(confirmButton[x].textContent == "Invite" ){ confirmButton[x].click() } }

comments powered by Disqus