Skip to content

Instantly share code, notes, and snippets.

@sillygwailo
Last active October 5, 2015 03:13
Show Gist options
  • Save sillygwailo/9180882 to your computer and use it in GitHub Desktop.
Save sillygwailo/9180882 to your computer and use it in GitHub Desktop.
User CSS to blur your own follower count but not that of others
/* If you know how to edit User CSS using a browser plugin, use https://*ello.co/* as the URLs for this CSS. */
body[data-path*="sillygwailo"] .followers-count {
-webkit-filter: blur(4px) !important;
}

These are instructions on how to obscure your own follower count in other Twitter clients.

Tweetbot 3 for iPhone

Two options:

  1. tap the person icon and then tap on Tweets. This will show your most recent tweets instead of your profile stats. Tapping on the person icon would show go back to your profile again. To remove the temptation, use option #2.
  2. long press on the person icon and select something else, which could be 4 of the following 5 (depending on what your other optional task bar is set to):
  • retweets
  • mute filters
  • lists
  • faves
  • search

Twitter for iPhone (official client)

  • the only option to avoid seeing your follower count is to never tap the "Me" tab. Long pressing is a way to switch accounts, but this will result in seeing that accounts follower count.
/* If you know how to edit User CSS using a browser plugin, use https://*twitter.com/* as the URLs for this CSS.
*
* Replace my handle with your own.
*/
#profile-hover-container[data-screen-name="sillygwailo"] a[data-element-term="following_stats"] .DashboardProfileCard-statValue,
body.user-style-sillygwailo .ProfileNav-stat[data-nav=followers] span.ProfileNav-value,
body.user-style-sillygwailo .dashboard-left .ProfileCardStats-statLink[data-element-term=follower_stats] span.ProfileCardStats-statValue {
-webkit-filter: blur(10px);
}
.profile-card span.DashboardProfileCard-statValue {
-webkit-filter: unset;
}
.home-summary-metric[data-metric=followers] .home-summary-value small.percent-change {
-webkit-filter: blur(0px) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment