Standup order in JIRA

Standup order in JIRA

Randomise a list of attendees and show on a JIRA scrum board to determine standup order.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Standup order in JIRA",
  "description": "Randomise a list of attendees and show on a JIRA scrum board to determine standup order.",
  "version": "2.10",
  "manifest_version": 3,
  "icons": {
    "16": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/jira/*"
      ],
      "css": [
        "reset.css",
        "style.css"
      ],
      "js": [
        "jiraStandupOrder.js"
      ]
    }
  ]
}