Examine source code of Jira Killer

Inspect and view changes in Jira Killer 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 Killer",
  "version": "1.7.0",
  "description": "Let Jira be cool",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.atlassian.net/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup-panel/index.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-panel/*"
      ],
      "matches": [
        "https://*.atlassian.net/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.atlassian.net/*"
    ]
  }
}