NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name gmail mobile wrap // @namespace https://openuserjs.org/users/kimrabbit95 // @description gmail mobile wrap // @include https://mail.google.com/mail/mu/mp/* // @license MIT // @copyright 2021, kimrabbit95 (https://openuserjs.org/users/kimrabbit95) // @run-at document-start // @grant addGlobalStyle // @version 0.0.1 // ==/UserScript== // ==OpenUserJS== // @author kimrabbit95 // ==/OpenUserJS== 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('.Pg .Ol { white-space: normal !important; height: auto !important; } ');