Confetti for JIRA

Confetti for JIRA

Pop confetti when you complete JIRA tickets!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Confetti for JIRA",
  "description": "Pop confetti when you complete JIRA tickets!",
  "version": "0.0.0.8",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.atlassian.net/jira/software/*",
        "https://github.com/*/pull/*"
      ],
      "js": [
        "bootstrap.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "confetti.browser.js",
        "run.js"
      ],
      "matches": [
        "https://*.atlassian.net/*"
      ]
    }
  ],
  "icons": {
    "16": "img/confetti16.png",
    "32": "img/confetti32.png",
    "48": "img/confetti48.png",
    "128": "img/confetti128.png"
  }
}