bugzilla-github-extension

bugzilla-github-extension

This extension integrates GitHub and Bugzilla

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "bugzilla-github-extension",
  "short_name": "BZ<->GH",
  "description": "This extension integrates GitHub and Bugzilla",
  "version": "2.1.1",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "images/icon48.png",
    "default_title": "bugzilla-github-extension",
    "default_popup": "src/browser-action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "lib/jquery-3.3.1.min.js",
        "src/globals.js",
        "src/content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/injected.js",
        "images/icon48.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/",
    "http://*/"
  ],
  "options_ui": {
    "page": "src/options.html"
  }
}