Examine source code of Jira Metrics Plugin - Analytics & Insights

Inspect and view changes in Jira Metrics Plugin - Analytics & Insights 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 Metrics Plugin - Analytics & Insights",
  "description": "A lightweight analytics plugin that helps you track and analyze your team's performance metrics directly from Jira boards.",
  "version": "2025.03.28",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "action": {
    "default_popup": "",
    "default_icon": {
      "16": "assets/icon16.png",
      "32": "assets/icon32.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    },
    "default_title": "Analyze Jira Metrics"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity"
  ],
  "oauth2": {
    "client_id": "114103446751-0gh67d0lh2lhlc5uuaueafv9hvetc120.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqdrmq2h3xyzsr3Mf+6B18ow5AeMM88mRNYfDG9TlpPHCsdZO7YSMOGxBxwnfIMqT3TCX9aMZldHvAkY43N/KXfq+BfgzjCxaQZu8V9MmUN/d+q1lrQ8ocDMVdZ9hjOMlVPswkqGemhI1bhVALmTcBnxWAvTy9Go/hq7qAL6pKGNpOSDRBTbu/+E7+93J4Q0EVLfDqeGSBkh6P4d3Xd4CbuhS3y3gdOvC7OUVhKlXnciLWk3t4HYY9k8X/oNgIIo4QBItEqsfEKrOmMlBqoeUBIqgtgW017mp9ewZSPI6RqMCKVjIXbNS8SvvfGRotL095FL5Zv5N1rHJfaSwex5Y8wIDAQAB",
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/*",
        "static/css/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": false
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/secure/RapidBoard.jspa?*",
        "https://*/secure/RapidBoard.jspa?*",
        "https://*/jira/software/projects/*/boards/*",
        "https://*/jira/software/c/projects/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "assets/styles.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://jirametrics.pro/*"
    ]
  }
}