Open In App

How to like multiple posts on facebook news feed automatically using JavaScript ?

Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we are going to learn how to like multiple posts automatically on the Facebook news feed. Many a time we waste too much time liking all the posts in our news feeds. So this script will help to reduce our time and effort by automating this task.

Approach:

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

Below are the steps:

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

Example: This example shows the use of the above-explained approach.

javascript




var posts = document.getElementsByClassName("_15ko");
for(var i=0;i<posts.length;i++)
{
    if(posts[i].classList.contains("_77la")==false)
    {
        posts[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 purpose only, please don’t use it for disturbing anyone or any unethical way.


Last Updated : 24 Jan, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads