RtlGPT: 👈🤖

RtlGPT: 👈🤖

Aligns ChatGPT content right to left, if that content begins with letters on an RTL language like Arabic or Hebrew

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RtlGPT: 👈🤖",
  "version": "1.0",
  "description": "Aligns ChatGPT content right to left, if that content begins with letters on an RTL language like Arabic or Hebrew",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chat.openai.com/*",
        "*://*.chat.openai.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle"
    }
  ]
}