Examine source code of Jira Cloud RTL

Inspect and view changes in Jira Cloud RTL source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.3.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/*",
        "*://databases/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}