Claude: hide the artifacts panel
Hides the side artifacts panel and gives its width back to the conversation column.
Code to copy
// Toggle the side artifacts panel and reclaim its width
(function () {
var id = 'jz-claude-no-artifacts';
var el = document.getElementById(id);
if (el) { el.remove(); return; }
var s = document.createElement('style');
s.id = id;
s.textContent = '[data-testid="artifacts-panel"],' +
'aside:has([data-testid*="artifact" i]){display:none!important;}' +
'[data-testid="chat-container"]{max-width:1080px!important;}';
document.head.appendChild(s);
})();
How to use this example
- Copy the code with the button above.
- Install JustZix (2 minutes) and open the extension on the target page.
- Add a new rule matching that page.
- Paste the code into the rule's JavaScript panel and save — it runs on every page visit.
Rate this example
No ratings yet — be the first.