An open API service indexing awesome lists of open source software.

https://github.com/codedotjs/like-facebook-posts

:+1: Likes all facebook posts and comments.
https://github.com/codedotjs/like-facebook-posts

Last synced: 9 months ago
JSON representation

:+1: Likes all facebook posts and comments.

Awesome Lists containing this project

README

          

## Likes Facebook Posts

> Simple javascript snippet to like all the facebook posts and comments.

## Usage

```
Load the complete page and paste the snippet given below in your Browser's console
```

```js
function getLikes() {

for (var startNode = 0; document.getElementsByClassName("UFILikeLink")[startNode]; startNode++) {

if (document.getElementsByClassName("UFILikeLink")[startNode].innerHtml != "Unike") {

document.getElementsByClassName("UFILikeLink")[startNode].click();

}

}

console.log("Liked All"); // if you are putting it at one place you can use other notifiers like toaster etc

}
```

```
Hit Enter
```