Challenge Notification Remover for Kongregate Chat

This script removes the challenge notification in Kongregate's Chat

  1. // ==UserScript==
  2. // @name Challenge Notification Remover for Kongregate Chat
  3. // @namespace ventero.de
  4. // @include http://www.kongregate.com/games/*
  5. // @description This script removes the challenge notification in Kongregate's Chat
  6. // @author Ventero
  7. // @version 1.0.2
  8. // @date 13.03.2011
  9. // ==/UserScript==
  10.  
  11. // Written by Ventero (http://www.kongregate.com/accounts/Ventero)
  12. // This script is in the public domain
  13.  
  14. var script = document.createElement("script");
  15. script.innerHTML = "ChatWindow.prototype.showChatNag = function(){};"
  16. document.body.appendChild(script);
  17. setTimeout(function(){document.body.removeChild(script);}, 100);