Skip to content

Instantly share code, notes, and snippets.

@18520339
Created October 6, 2023 10:21
Show Gist options
  • Save 18520339/0ddf7ca51810c3e687782082285e80d7 to your computer and use it in GitHub Desktop.
Save 18520339/0ddf7ca51810c3e687782082285e80d7 to your computer and use it in GitHub Desktop.
customize poe
javascript:(function(){
document.querySelector('.MainColumn_column__UEunw').style.width = '100%';
document.querySelector('.ChatPageMain_container__2O2h8').style.maxWidth = '100%';
document.querySelectorAll('.Message_botMessageBubble__aYctV, .Message_humanMessageBubble__DtRxA').forEach(mess => mess.style.maxWidth='100%');
var addCSS = css => document.head.appendChild(document.createElement("style")).innerHTML = css;
addCSS('::-webkit-scrollbar { width: unset!important }');
addCSS('::-webkit-scrollbar-thumb { background-color: lightgray }');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment