Slack Hebrew

Slack Hebrew

In Slack 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": "Slack Hebrew",
  "version": "1.5",
  "description": "In Slack web app: modify direction to rtl, but only for messages containing hebrew characters",
  "icons": {
    "128": "icon.png"
  },
  "author": "Shlomi Matichin <[email protected]>",
  "page_action": {
    "default_title": "Slack Hebrew"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.slack.com/*"
      ],
      "js": [
        "slack-hebrew.js"
      ],
      "all_frames": true
    }
  ]
}