LTR-RTL

LTR-RTL

This extension allows you to change web page text direction.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LTR-RTL",
  "description": "This extension allows you to change web page text direction.",
  "version": "2.0.1",
  "commands": {
    "RTL": {
      "suggested_key": {
        "default": "Ctrl+Shift+J",
        "mac": "Command+Shift+J"
      },
      "description": "Enable right to left"
    },
    "LTR": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "Enable left to right"
    }
  },
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "change_dir.js"
  }
}