Gitlab enhancer

Gitlab enhancer

Gitlab extension to enhance the user experience on the merger request process

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gitlab enhancer",
  "version": "4",
  "description": "Gitlab extension to enhance the user experience on the merger request process",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "src/popup/index.html",
    "default_icon": "images/image.png"
  },
  "icons": {
    "16": "images/image.png",
    "128": "images/image.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "src/content/content.css"
      ],
      "js": [
        "src/content/helper_api.js",
        "src/content/count_discussions.js",
        "src/content/conditional_display.js",
        "src/content/my_mr.js",
        "src/content/index.js",
        "src/content/toggle.js",
        "src/content/tracking.js"
      ]
    }
  ],
  "manifest_version": 3
}