NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Claude.AI-RTL // @version 2024-06-08 // @description Right alignment of Claude for Hebrew speakers // @author MusiCode1 // @match https://claude.ai/* // @icon https://www.google.com/s2/favicons?sz=64&domain=claude.ai // @grant none // @license MIT // @copyright 2024, MusiCode1 (https://openuserjs.org/users/MusiCode1) // ==/UserScript== (function() { 'use strict'; const style = document.createElement("style"); style.textContent = ` p.whitespace-pre-wrap.break-words, .font-user-message p, [contenteditable="true"] p { direction: rtl; } li { direction: rtl; text-align: start; } pre { direction: ltr; padding: 5px; } code { direction: ltr; } `; document.head.appendChild(style); })();