JIRA Issue Link Visualiser

JIRA Issue Link Visualiser

A more visual way of viewing the links between your currently selected issue and other issues in Atlassian JIRA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "JIRA Issue Link Visualiser",
  "version": "1.0.2",
  "description": "A more visual way of viewing the links between your currently selected issue and other issues in Atlassian JIRA",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "Adam Straube",
  "requirements": {
    "3D": {
      "features": [
        "webgl"
      ]
    }
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*/browse/*",
        "*://*/browse/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "vivagraph.js",
        "issueDetect.js"
      ],
      "css": [
        "issueDetect.css"
      ],
      "svg": [
        "fullscreen-symbol.svg"
      ]
    }
  ],
  "web_accessible_resources": [
    "MaterialIcons-Regular.ttf",
    "MaterialIcons-Regular.woff",
    "MaterialIcons-Regular.woff2"
  ]
}