ChatGPT-rtl

ChatGPT-rtl

You can solve the issue of displaying Arabic and Persian texts from right to left on websites such as Chat-gpt, BAI, and poe using this simple and lightweight extension. حل مشکل RTL در ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "به کمک این افزونه پیام های چت جی پی رو به زبان فارسی درست مشاهده میکنید",
  "manifest_version": 2,
  "name": "ChatGPT-rtl",
  "version": "1.0",
  "homepage_url": "https://github.com/Hadi-pd/ChatGPT-RTL",
  "icons": {
    "48": "icons/rtlgpt.png"
  },
  "web_accessible_resources": [
    "css/style.css"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.poe.com/*",
        "*://*.chatbot.theb.ai/*",
        "*://gpt.com/*",
        "*://chat.gpt.com/*",
        "*://chat.openai.com/*"
      ],
      "js": [
        "ChatGPT-rtl.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{5ad22ad7-a261-406b-9bfc-83a02c2533bd}"
    }
  }
}