RTL: ChatGPT, Claude, ...

RTL: ChatGPT, Claude, ...

Toggle conversation alignment with a click: switch from left-to-right (LTR) to right-to-left (RTL) and back with another click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "manifest_version": 3,
  "version": "2.0",
  "icons": {
    "16": "assets/img/16.png",
    "32": "assets/img/32.png",
    "48": "assets/img/48.png",
    "64": "assets/img/64.png",
    "80": "assets/img/80.png",
    "96": "assets/img/96.png",
    "112": "assets/img/112.png",
    "128": "assets/img/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "assets/js/chatgpt.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://claude.ai/*"
      ],
      "js": [
        "assets/js/claude.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}