Boogs

This web extension adds Bugzilla links to Github pages there reference Bugzilla bugs. This is primarily useful for people who work on a Mozilla product that uses Github Pull Requests while the actual bugs are in Bugzilla.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Boogs",
  "version": "0.2resigned1",
  "description": "Adds Bugzilla links to Github pages.",
  "developer": {
    "name": "Stefan Arentz",
    "url": "https://github.com/st3fan"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "boogs.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{04331ca8-933b-4f14-bc84-806e7227be94}"
    }
  }
}