// ==UserScript== // @name Adjust mobile view of newsmth.net // @namespace daimon2k // @author daimon2k // @match *://*.newsmth.net/* // @grant none // @version 0.2 // @run-at document-end // @description 7/18/2020, 10:41:56 PM // @downloadURL none // ==/UserScript== (function() { var css = '.a-left {display:none !important}'; css += '.a-content {font-size: 350% !important;}'; css += '#top_head {display: none !important;}'; loadStyle(css) function loadStyle(css) { var style = document.createElement('style'); style.type = 'text/css'; style.rel = 'stylesheet'; style.appendChild(document.createTextNode(css)); var head = document.getElementsByTagName('head')[0]; head.appendChild(style); } hideSidebar() function hideSidebar() { document.getElementsByClassName('ico-pos-hide')[0].click() } })();