Jira Bugzilla Sync Companion

Jira Bugzilla Sync Companion

Supplements the Jira Bugzilla Integration with in-browser assistance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "description": "Supplements the Jira Bugzilla Integration with in-browser assistance.",
  "page_action": {
    "default_icon": "icons/jira.svg",
    "default_title": "Open in Jira"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bugzilla-dev.allizom.org/*",
        "https://bugzilla.mozilla.org/*"
      ],
      "js": [
        "scripts/bugzilla.js"
      ]
    },
    {
      "matches": [
        "https://mozilla-hub-sandbox-721.atlassian.net/*",
        "https://mozilla-hub.atlassian.net/*"
      ],
      "js": [
        "scripts/jira.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://jbi.services.mozilla.com/*"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{34996bc7-781f-4c75-a94e-99796d3f6656}"
    }
  },
  "version": "1.0.4",
  "name": "Jira Bugzilla Sync Companion"
}