GitLab Approvals

GitLab Approvals

Displays the approvals for a given MR within the MR list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitLab Approvals",
  "version": "1.3.4",
  "description": "Displays the approvals for a given MR within the MR list.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.gitlab.com/*/merge_requests*",
        "https://*.nordstrom.com/*/merge_requests*"
      ],
      "js": [
        "thirdparty/jquery.min.js",
        "js/gitlab_api.js",
        "js/show_approvals.js",
        "js/cache_util.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "images/gitlab.png",
    "32": "images/gitlab.png",
    "48": "images/gitlab.png",
    "128": "images/gitlab.png"
  },
  "options_page": "html/options.html"
}