One gap in twitter's API is the ability to unlike tweets, so here we are doing it manually 1. Navigate to `twitter.com//likes` 2. Copy and paste this script into console 3. Wait for script to finish ```js setInterval(() => { try { document.querySelector('[data-testid="unlike"]').click() console.log('clicking') } catch { window.scrollBy(0, 200) console.log('scrolling') } }, 500) ```