Hi All,
After some trial-and-error, here's a Chrome Bookmark Script to widen the tiny ChatGPT code-windows.
Click on the bookmark to widen all existing code-windows on the page.
(Tested in Chrome only. May not work on cached pages?)
To create the bookmark, right-click on your bookmarks bar and choose 'Add page...', then paste the script into the URL text-box.
Enjoy the wider view [~~~~~~~~~~~~~~~~~ ]
javascript:(function() {
elements.forEach(function(el) {
el.className = 'w-full';
});
})();