Jira Cloud RTL

Jira Cloud RTL

Enhance Jira Cloud with effortless RTL support. Simplify collaboration in right-to-left languages. Boost productivity now!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Jira Cloud RTL",
  "description": "Enhance Jira Cloud with effortless RTL support. Simplify collaboration in right-to-left languages. Boost productivity now!",
  "version": "1.0.1",
  "icons": {
    "16": "green-16.png",
    "32": "green-32.png",
    "48": "green-48.png",
    "128": "green-128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*.atlassian.net/*",
        "https://app.tempo.io/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}