Created
June 15, 2014 08:54
-
-
Save nilsding/b455280c0eca4efc44ec to your computer and use it in GitHub Desktop.
Enable Emoji graphics on TweetDeck
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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