// ==UserScript== // @name allenai css // @description Force code wrapping and unset chat message display // @match https://playground.allenai.org/* // @version 0.0.1.20250719063635 // @namespace https://greasyfork.org/users/1435046 // @downloadURL none // ==/UserScript== (function() { const style = document.createElement('style'); style.textContent = ` .chat-message { display: revert !important; } code { white-space: pre-wrap; } .MuiBox-root { padding: 0 !important; } button[aria-label="Scroll to bottom"] { display: none !important; } div.MuiBox-root[id="icon"] { display: none !important; } `; document.head.appendChild(style); })();