Trade Chat Fullscreen

description

  1. // ==UserScript==
  2. // @name Trade Chat Fullscreen
  3. // @namespace namespace
  4. // @version 0.1
  5. // @description description
  6. // @author tos
  7. // @match *.torn.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. GM_addStyle(`
  12. #chatRoot div[class*=trade] div[class^=chat-box-content] {
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. height: 100% !important;
  17. width: 100% !important;
  18. }
  19. #chatRoot div[class*=trade] div[class^=chat-box-content] div[class^=viewport] {
  20. height: 100% !important;
  21. max-height: 100% !important;
  22. }
  23. `)