Skip to content

Instantly share code, notes, and snippets.

@inertia186
Last active December 15, 2015 17:49
Show Gist options
  • Save inertia186/5298810 to your computer and use it in GitHub Desktop.
Save inertia186/5298810 to your computer and use it in GitHub Desktop.
This is a greasemonkey script that will hide the chat window on BTC-e (http://www.btc-e.com/).
// ==UserScript==
// @name btc-e-no-chat
// @namespace https://gist.github.com/inertia186/5298810
// @version 0.1
// @description Hide the chat window on BTC-e.
// @match *://btc-e.com/*
// ==/UserScript==
/**
* Don't like the vulgarities and idiocy in the BTC-e chat (aka troll box)
* window? Use this script to disable it.
*
* I intentionally kept it extremely simple so that even the most novice
* users can see how it works. Therefore, if you want to re-enable chat,
* just uninstall this script.
*
* If you're using Chrome, you might need to use this extension to run
* this script:
*
* https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo/related
*
* If you like this script, why not send me tips?
*
* BitCoin: 13j5YM5NCLBNj4RP2HQPXU2gBae46FeLiF
* LiteCoin: Lf7Pf2FaKntco3HnDmwjW4e57Vd7hf1vG6
* NameCoin: NHETzT1g7XK3KH45aVjy9Y5bdYytLxW8cg
* NovaCoin: 4TsZBBCazmv87GJbVZRSA5nvQR4Gy8fzfA
*
*/
var chat = document.getElementById('nChatCon') ;
chat.style['display'] = 'none' ;
@inertia186
Copy link
Author

Hey, it turns out you can just use: https://btc-e.com/disableChat

Who knew?!

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