Ever wanted to delete all your likes/favorites from X (Twitter) but only found broken/expensive tools? You are in the right place.
- Go to: https://x.com/{username}/likes
- Open the console and run the following JavaScript code:
/* define a function to delete likes */
function unLike() {
for (const d of document.querySelectorAll('button[data-testid="unlike"]')) {
d.click();