Google Chat RTL (Hebrew)

Google Chat RTL (Hebrew)

In Google Chat web app: modify direction to rtl, but only for messages containing Hebrew characters

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Chat RTL (Hebrew)",
  "version": "1.3",
  "description": "In Google Chat web app: modify direction to rtl, but only for messages containing Hebrew characters",
  "icons": {
    "128": "icon.png"
  },
  "author": "Kostya Maryan <[email protected]>",
  "page_action": {
    "default_title": "Google Chat RTL"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.google.com/*"
      ],
      "js": [
        "Google-Chat-RTL.js"
      ],
      "all_frames": true
    }
  ]
}