Skip to content

Instantly share code, notes, and snippets.

@SamantazFox
Created May 15, 2020 15:59
Show Gist options
  • Save SamantazFox/db588dab3316987e14e24c41caf2b55d to your computer and use it in GitHub Desktop.
Save SamantazFox/db588dab3316987e14e24c41caf2b55d to your computer and use it in GitHub Desktop.
Remove Emojis from twitter/tweetdeck (needs stylish extension or equivalent)
@-moz-document domain("twitter.com") {
/*
* New twitter
*/
/* Emojis everywhere */
/*div.css-1dbjc4n span.r-bnwqim.r-h9hxbl { display: none }*/
/* Emojis in twitter names */
/*div.r-1b6yd1w.r-1vr29t4 span.r-bnwqim.r-h9hxbl { display: none; }*/ /* TN in profile only */
/*div.r-3s2u2q.r-qvutc0 span.r-bnwqim.r-h9hxbl { display: none; }*/ /* TN in tweet only */
/*div.r-18u37iz.r-dnmrzs span.r-bnwqim.r-h9hxbl { display: none; }*/ /* TN everywhere */
/* Emojis in twitter bio */
/*div.r-1adg3ll.r-15d164r span.r-bnwqim.r-h9hxbl { display: none }*/
/* Emojis in tweets */
/*div.css-1dbjc4n div.r-bnwqim span.r-bnwqim.r-h9hxbl { display: none }*/
}
@-moz-document domain("twitter.com") {
/*
* Old twitter
*/
/* Emojis in twitter names */
/*span.Emoji.Emoji--forLinks { display: none; }*/
/* Emojis in bio */
/*p.ProfileHeaderCard-bio img.Emoji.Emoji--forText { display: none; }*/
/* Emojis in tweets */
p.tweet-text img.Emoji.Emoji--forText { display: none; }
/* Emojis in hastags */
img.twitter-hashflag { display: none; }
}
@-moz-document domain("tweetdeck.twitter.com") {
/*
* Tweetdeck
*/
/* Emojis everywhere */
/*img.emoji { display: none; }*/
/* Emojis in twitter names */
/*b.fullname img.emoji { display: none; }*/ /* inline only */
/*strong.fullname img.emoji { display: none; }*/ /* profile only */
/* Emojis in bio */
/*p.prf-bio img.emoji { display: none; }*/
/* Emojis in tweets */
p.js-tweet-text img.emoji, p.tweet-text img.emoji { display: none; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment