Examine source code of Gitlab Review Helper

Inspect and view changes in Gitlab Review Helper 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
{
  "description": "Gitlab review helper",
  "manifest_version": 2,
  "name": "GitlabReviewHelper",
  "version": "1.1",
  "homepage_url": "https://github.com/Alabate/Gitlab-Review-Helper",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*/*/merge_requests/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{da22c2ac-b625-4316-af03-c3d0f4851812}"
    }
  }
}