Steam Trade WidthFix

Steamのトレード画面のサイズを修正する

// ==UserScript==
// @name        Steam Trade WidthFix
// @description Steamのトレード画面のサイズを修正する
// @author      GinoaAI
// @namespace   https://greasyfork.org/ja/users/119008-ginoaai
// @version     1.0
// @match       https://steamcommunity.com/tradeoffer/*/
// @include     https://steamcommunity.com/tradeoffer/*/
// @icon        https://pbs.twimg.com/profile_images/1099150852390977536/nvzJU-oD_400x400.png
// @run-at      document-end
// @grant       GM_openInTab
// ==/UserScript==

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('.trade_area .trade_right {width: 50%;}');
addGlobalStyle('.trade_area .trade_left {width: 50%;}');