NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @namespace http://openuserjs.org?users/injeomiyahoo.com // @name clien mobile wrap // @description clien mobile web site posting title wrap // @copyright 2019, injeolmiyahoo.com (https://openuserjs.org/users/injeolmiyahoo.com) // @license MIT // @include https://m.clien.net/* // @grant GM_addStyle // ==/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('.list_item { height: auto !important; } '); addGlobalStyle('.list_title { height: auto !important; } '); addGlobalStyle('.list_row { height: auto !important; } '); addGlobalStyle('.list_subject { white-space: initial !important; height: auto !important; } '); addGlobalStyle('.list_author { position: initial !important;} ');