RTL Text Director

RTL Text Director

This extension will automatically detect RTL text and change the direction of the text to RTL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RTL Text Director",
  "description": "This extension will automatically detect RTL text and change the direction of the text to RTL.",
  "manifest_version": 3,
  "version": "0.2",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "sw.js"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content/script.min.js"
      ],
      "css": [
        "content/styles.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}