Javascript to delete

Asked

Viewed 72 times

-4

I have no knowledge in J, but I saw that it is with this language that you can use scripts and delete social network items like by Exp on twitter:

setInterval(function(){t=$(".following").find(".follow-button");if(!t[0]){window.scrollTo(0,$(document).height());}else{ console.log(t.attr("class")); t.trigger("click");}},10)

I would like to know / help with a script to delete the Ikes and comments made on facebook by this page : fb.com/user-here/allactivity

1 answer

2

No, he can’t erase things from websites and social networks. What you see on the screen is actually a manipulation of what is already downloaded on your computer.

You can even delete and change the amount of Ikes, increase the number of notifications, but once you reload the page, everything will go back to the way it was before, because the JS runs in your browser and just inside it, all that is done will be persisted only during your own session.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.