Examine source code of Reviewboard Collapser

Inspect and view changes in Reviewboard Collapser source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Reviewboard Collapser",
  "version": "1.2resigned1",
  "manifest_version": 2,
  "author": "Blake Winton (https://bwinton.latte.ca/)",
  "description": "A WebExtension to add a collapse button to files in ReviewBoard requests.",
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://reviewboard.mozilla.org/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "applications": {
    "gecko": {
      "id": "reviewboard-collapser@webextensions"
    }
  }
}