Skip to content

Instantly share code, notes, and snippets.

@adalinesimonian
adalinesimonian / block-the-blue.md
Last active February 21, 2024 22:56
Block all verified Twitter accounts on screen
@matter-it-does
matter-it-does / YoutubeHoverToPlay.md
Created November 4, 2021 11:22
Turn off youtube keep hovering to play popup popover
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active May 21, 2024 13:54
[Recipe] Delete all your likes/favorites from Twitter

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

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }