How to bulk remove Twitter likes

The following steps show how to bulk unlike tweets on Twitter.

The process involves running a custom script in the browser debug console. It may work in other browsers, but is recommended to use Google Chrome.

NOTE: It may need to be ran multiple times to completely clear your tweets.

  1. Open Google Chrome
  2. Go to your twitter profile “likes” tab https://twitter.com/username/likes
  3. Press F12 on your keyboard – this opens the browsers debug console
  4. Open the ‘Console’ tab
  5. Copy the following script
  6. setInterval(() => {
      for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
        d.click()
      }
      window.scrollTo(0, document.body.scrollHeight)
    }, 1000)
  7. In the bottom of the debug console, next to the blue arrow, paste it in
  8. Press enter the run the script
  9. Note – you may need to refresh the page and run the script again, several times, to completely clear your list.