APT GitHub Improvements

APT GitHub Improvements

Various improvements to GitHub including linking issues to PRs and the Story Points feature: features are intended for both general GitHub users and the Android Product Team (APT) at Mozilla.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "APT GitHub Improvements",
  "version": "0.5.2",
  "description": "Various improvements to GitHub for the Android Product Team (APT) at Mozilla",
  "options_ui": {
    "page": "dist/src/options.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.github.com/*"
      ],
      "js": [
        "dist/src/contentScript.js"
      ]
    }
  ],
  "permissions": [
    "*://bugzilla.mozilla.org/rest/*",
    "*://api.github.com/*",
    "webRequest",
    "storage"
  ]
}