Github Labels for JIRA Sprints

Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.
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": "Github Labels for JIRA Sprints",
  "version": "0.14.0",
  "description": "Adds information to cards in the JIRA sprint view to show GitHub labels on associated Pull Requests.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js"
      ],
      "matches": [
        "https://*.atlassian.net/jira/software/c/projects/*/boards/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "assets/travis-pass.png",
    "assets/travis-fail.png",
    "assets/travis-pending.png"
  ]
}