Examine source code of Jira Board Backlog Status Enhancer

Inspect and view changes in Jira Board Backlog Status Enhancer 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 Board Backlog Status Enhancer",
  "author": "Douglas Medeiros <eu@douglasmedeiros.dev>",
  "description": "Adds color-coded status labels to issues on the Jira Board backlog page, improving workflow visualization for users.",
  "version": "0.3.2",
  "icons": {
    "16": "logo/logo-16.png",
    "48": "logo/logo-48.png",
    "128": "logo/logo-128.png"
  },
  "permissions": [],
  "host_permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "run_at": "document_start",
      "js": [
        "resources/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resources/script.js",
        "resources/style.css"
      ],
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "use_dynamic_url": true
    }
  ]
}