Agile Board

Agile Board

Adding assignee names to JIRA Team Board

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Agile Board",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Adding assignee names to JIRA Team Board",
  "author": "Vikas Bidhuri",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Show assignee names on JIRA Team Board"
  },
  "content_scripts": [
    {
      "css": [
        "background.css"
      ],
      "matches": [
        "*://*.com/*RapidBoard.jspa/*"
      ]
    }
  ],
  "permissions": [
    "https://*/*",
    "http://*/*",
    "tabs"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}