Skip to content

Instantly share code, notes, and snippets.

@mediaupstream
Last active December 15, 2015 17:39
Show Gist options
  • Save mediaupstream/5297711 to your computer and use it in GitHub Desktop.
Save mediaupstream/5297711 to your computer and use it in GitHub Desktop.
LOLCat translator for the BTC-E chatbox
//
// 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)};})();
@Shic1983
Copy link

Shic1983 commented Apr 3, 2013

Nice work !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment