Like all the Post of a Page in 2 minutes
5 years ago
130 views
Sometimes you want to like all posts of your facebook page just to increase its visibility. You can directly do that in one click with the following code.
1. Open the console (By pressing F12 in Google Chrome)
2. Paste the following code:
x=document.getElementsByTagName("a");
for(i=0;i<=x.length-1;i++){
if(x[i].getAttribute("aria-label")=="Like this")
x[i].click();
}
Recent Comments