Last active
December 15, 2015 17:39
-
-
Save mediaupstream/5297711 to your computer and use it in GitHub Desktop.
LOLCat translator for the BTC-E chatbox
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
// | |
// Load LOLTranslate.js library | |
// append the script to the head... | |
// | |
var s = document.createElement('script'); | |
s.src = 'https://raw.github.com/mediaupstream/LOLTranslate.js/master/LOLTranslate.min.js'; | |
document.getElementsByTagName('head')[0].appendChild(s); | |
// | |
// Intercept the incoming chat messages | |
// | |
window.x = window.nChatPutMsg; | |
window.nChatPutMsg = function(a,b,c,d,e,f){ | |
c = LOLTranslate(c); | |
window.x(a,b,c,d,e,f); | |
} | |
// | |
// Here is the Bookmarklet code | |
// | |
javascript:(function(){var s=document.createElement("script");s.src="https://raw.github.com/mediaupstream/LOLTranslate.js/master/LOLTranslate.min.js",document.getElementsByTagName("head")[0].appendChild(s);window.x=window.nChatPutMsg;window.nChatPutMsg=function(a,b,c,d,e,f){c=LOLTranslate(c),window.x(a,b,c,d,e,f)};})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice work !