TP NX - show logout button on small screens - title bar not as wide

TP NX - show logout button on small screens - title bar not as wide 2

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name        TP NX - show logout button on small screens - title bar not as wide
// @namespace   english
// @description      TP NX - show logout button on small screens - title bar not as wide  2
// @include     http*://*tourplan.net*
// @version     1.1
// @run-at document-end
// @grant       GM_addStyle
// @license MIT
// ==/UserScript==

// Main - CSS added to header 

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '         .ngview>div header>tp-label {     flex: initial  !important ;  }            ';
document.getElementsByTagName('head')[0].appendChild(style);