Binance Maximize Layout

Maximize Binance layout to full screen width

  1. // ==UserScript==
  2. // @name Binance Maximize Layout
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Maximize Binance layout to full screen width
  6. // @author Nobakab
  7. // @match https://www.binance.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function addGlobalStyle(css) {
  15. var head, style;
  16. head = document.getElementsByTagName('head')[0];
  17. if (!head) { return; }
  18. style = document.createElement('style');
  19. style.type = 'text/css';
  20. style.innerHTML = css;
  21. head.appendChild(style);
  22. }
  23.  
  24. addGlobalStyle('.foWCZq {max-width: 1500px !important;}');
  25. addGlobalStyle('.fwAynw {min-height: 500px !important;}');
  26. })();