Wednesday, July 3, 2024
HomeLanguagesJavascriptHow to auto like all the comments on a facebook post using...

How to auto like all the comments on a facebook post using JavaScript ?

In this article, we are going to learn how to like all the comments on a Facebook post automatically. Many times we want to like all the comments of friends on our post or on any other’s post, so this script helps us to save time and effort by automatically liking all the comments on the post.

Approach:

  1. Make variable comments that points to an array of all the comment on the post.
  2. Run a loop to iterate all the comments.
  3. Now we check if the comment is not already liked.
  4. Then click on the like button of that comment.

Below are the steps:

  • Go to the Facebook page using m.facebook.com
  • Sign in and open any post.
  • Open developer mode in Chrome by pressing Ctrl+Shift+I
  • Navigate to the console.
  • Now, run the below script. 

javascript




var comments =document.getElementsByClassName("touchable _2b0a");
for(var i=0;i<comments.length;i++)
{
    if(comments[i].style.color != "rgb(32, 120, 244)")
    {
        comments[i].click();
    }
}


Output:

Output

Note: Please ensure that there is a stable internet connection available so that the script runs smoothly. Also ensure to visit Facebook with m.facebook.com, not www.facebook.com because this script works on the mobile version of Facebook only.

Note: This tutorial is for educational purposes only, please don’t use it for disturbing anyone or in any unethical way.

Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments