CAPSMADNESS

Makes all text in chat captalised

  1. // ==UserScript==
  2. // @name CAPSMADNESS
  3. // @description Makes all text in chat captalised
  4. // @include http://www.kongregate.com/games/*/*
  5.  
  6. // @version 0.0.1.20160322214300
  7. // @namespace https://greasyfork.org/users/32649
  8. // ==/UserScript==
  9.  
  10. var a = document.createElement('script');
  11. a.innerHTML = 'ChatDialogue.prototype.displayMessage = function (a, b, c, d){var e = this;this._holodeck.filterIncomingMessage(b, function(i){e.displayUnsanitizedMessage(a,i.toUpperCase(),c,d)})}';
  12. document.body.appendChild(a);