Skip to content

Instantly share code, notes, and snippets.

@nilsding
Created June 15, 2014 08:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nilsding/b455280c0eca4efc44ec to your computer and use it in GitHub Desktop.
Save nilsding/b455280c0eca4efc44ec to your computer and use it in GitHub Desktop.
Enable Emoji graphics on TweetDeck
// How to enable Emoji graphics on TweetDeck™
//
// right-click somewhere on TweetDeck™ and click on "Inspect Element"
// go to the JavaScript console
// copy and paste these four lines into the console:
window.TD.util.cleanOld = window.TD.util.clean;
window.TD.util.clean = function(e) {
return window.TD.emoji.parse(window.TD.util.cleanOld(e));
};
// before anyone asks, this is not opening the TweetDeck™ XSS® vulnerability again.
//
// nilsding, June 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment