Examine source code of Jira Backlog Status

Inspect and view changes in Jira Backlog Status 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",
  "name": "Jira Backlog Status",
  "author": "Efroim Rosenberg",
  "version": "1.0.2",
  "description": "This extension displays Jira Ticket Statuses in the Backlog Board View for those that use the Software Project type.",
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*.atlassian.net/jira/software/*"
  ],
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_title": "Jira Backlog Status"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/jira/software/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js",
        "content.css",
        "icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}