Skip to content

Instantly share code, notes, and snippets.

@tarikmanoar
Created June 18, 2021 08:40
Show Gist options
  • Save tarikmanoar/3eaf6c46c6a20641a0151156a75c383e to your computer and use it in GitHub Desktop.
Save tarikmanoar/3eaf6c46c6a20641a0151156a75c383e to your computer and use it in GitHub Desktop.
This script use for auto comment one facebook post
setInterval(function(){
let input = document.getElementsByName("comment_text")[0];
let submit = document.querySelector("button[type='submit']");
submit.disabled = false;
i=adnan ='';
for(i=0;i<=Math.floor(Math.random() * 10); i++){
adnan += " #WhereIsAdnan " ;
}
input.value = adnan;
console.log(adnan);
submit.click();
},5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment