Gitlab Enhancement Suite

Gitlab Enhancement Suite

Adds useful enhancements to the Gitlab UI.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gitlab Enhancement Suite",
  "description": "Adds useful enhancements to the Gitlab UI.",
  "version": "0.0.0.14",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gitlab.com/*/boards/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "storage.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "https://gitlab.com/*/issues/*",
        "https://gitlab.com/*/merge_requests/*"
      ],
      "js": [
        "ticket-copy-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/approval.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "options.html"
  }
}