Skip to main content

Cleanup your Twitter timeline

The latest inject to the Twitter timeline has been displaying the tweets liked by those who you follow. Frustratingly Twitter currently provides no turn-off preference for this! As yet I have only found one way to hide such tweets from my timeline, but this is only applicable to the web interface where it's possible to manipulate the CSS code through browser extensions like User CSS for Chrome.

Add this to your browser's CSS extension for hiding liked tweets by other users:

div[data-component-context="suggest_activity_tweet"] {
  display:none !important;
}