Recommend Expertise

Recommend Expertise

Recommend developer expertise based on the bug report

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Recommend Expertise",
  "description": "Recommend developer expertise based on the bug report",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "declarativeContent",
    "https://bugzilla.mozilla.org/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}