Skip to content

Instantly share code, notes, and snippets.

@bracca95
bracca95 / delete-likes-from-twitter.md
Last active November 1, 2025 13:47 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from X (Twitter) but only found broken/expensive tools? You are in the right place.

  1. Go to: https://x.com/{username}/likes
  2. 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();