OpenAI rtl

OpenAI rtl

This tool is designed to adjust the formatting of the Arabic language specifically for the ChatGPT website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Amr Fathy",
  "name": "OpenAI rtl",
  "version": "1.1.0",
  "description": "Change direction for arabic content",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_title": "OpenAI Arabic direction"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "index.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{35075846-c0d4-48c0-9ba9-a27308e50bbd}"
    }
  }
}