Examine source code of JIRA Issue Highlighting

Inspect and view changes in JIRA Issue Highlighting 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",
  "author": "Jeroen Meulendijks",
  "content_scripts": [
    {
      "js": [
        "script.js",
        "jquery-3.2.1.min.js"
      ],
      "matches": [
        "https://*/secure/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Highlights background color of issues",
  "icons": {
    "128": "icon_128.png"
  },
  "manifest_version": 2,
  "name": "JIRA Issue Highlighting",
  "version": "1.3",
  "web_accessible_resources": [
    "script.js"
  ]
}