@ב-ל ניסיתי עכשיו להשתמש עם הקוד הזה, וזה לא עשה לי את העבודה, הוא לא באמת הציב לי טקסט שאמור להיות בתחילת המשפט שם.
יש לי קוד JS אחר שנדמה לי ש @yzahn כתב, אשתף אותו כאן.
javascript: (() => {
let elements = document.getElementsByTagName("*");
for (e of elements) {
if (!e.style) continue;
if (!e.style.direction || e.style.direction === "ltr")
e.style.direction = "rtl";
else e.style.direction = "ltr";
}
})();