RageNugget / KuCoin Chart Only

// ==UserScript==
// @name         KuCoin Chart Only
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       >_RageNugget
// @match        https://trade.kucoin.com/*
// @icon         https://www.google.com/s2/favicons?domain=kucoin.com
// @grant        none
// @copyright    2021, RageNugget. Do not use, copy, modify, share or anthing else with this script unless you have written permission. Discord: RageNugget#9608
// @copyright    2021, RageNugget (https://openuserjs.org//users/RageNugget)
// @license      MIT
// ==/UserScript==

(function() {

    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }

    addGlobalStyle(`
    div[class*="bottom_layout"] {
        display: none ! important;
    }

    div[class*="right__"] {
        display: none ! important;
        width: 0;
        min-width: 0;
    }
`);

})();