n 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 our time and effort by automatically liking all the comments on the post.
Approach:
- Make a variable comments that points to an array of all the comment on the post.
- Run a loop to iterate all the comments.
- Now we check if the comment is not already liked.
- Then click on the like button of that comment.
Below are the steps:
- Go to facebook page using m.facebook.com
- Sign in and open any post.
- Open developer mode in Chrome by pressing Ctrl+Shift+I
- Now, run the below script.
var comments =document.getElementsByClassName("touchable _2b0a");
for(var i=0;i
{
if(comments.style.color != "rgb(32, 120, 244)")
{
comments.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 mobile version of facebook only.