IP.Chat - Auto-Resizing Popup

Automatically resizes the chat container to fill the window when in pop-up mode.

  1. // ==UserScript==
  2. // @name IP.Chat - Auto-Resizing Popup
  3. // @namespace Makaze
  4. // @description Automatically resizes the chat container to fill the window when in pop-up mode.
  5. // @include *
  6. // @grant none
  7. // @version 1.0
  8. // ==/UserScript==
  9.  
  10. if (document.body.id === 'ipboard_body' && document.getElementById('storage_chatroom') != null && window.location.href.match(/_popup=1/)) {
  11. document.getElementById('messages-display').style.transition = 'height 50ms ease-in-out';
  12.  
  13. document.getElementById('messages-display').style.height = window.innerHeight - 30 - 121 + 'px';
  14.  
  15. window.addEventListener('resize', function() {
  16. document.getElementById('messages-display').style.height = window.innerHeight - 30 - 121 + 'px';
  17. }, false);
  18. }