Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Created August 27, 2020 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadawais/ad4bc1da42f40d54666e5812d7bf7b62 to your computer and use it in GitHub Desktop.
Save ahmadawais/ad4bc1da42f40d54666e5812d7bf7b62 to your computer and use it in GitHub Desktop.
TWITTER: Remove the followers from twitter following tab to see the people who don't follow you back. Hacky as heck :P
document.querySelectorAll("div[role=\"button\"]").forEach(el => {
const follower = /Follows you/g.test(el.textContent);
follower && el.parentNode.parentNode.remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment