Skip to content

Instantly share code, notes, and snippets.

View GiovaniFerraroTrivelli's full-sized avatar
🏠
Working from home

Giovani Ferraro Trivelli GiovaniFerraroTrivelli

🏠
Working from home
View GitHub Profile
@RinorDreshaj
RinorDreshaj / UnlikeFacebookPages.js
Last active March 4, 2021 05:57
A script to remove all Likes from facebook
var likedPages = document.getElementsByClassName("PageLikedButton");
var count = 0;
function unlikePages(){
var liked = likedPages.item(count);
var mouseOverEvent = document.createEvent("MouseEvents");
mouseOverEvent.initEvent("mouseover",true,false);
liked.dispatchEvent(mouseOverEvent);