Gitlab insert template

Gitlab insert template

Insert template on the gitlab MR

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gitlab insert template",
  "description": "Insert template on the gitlab MR",
  "version": "1.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "./bundle/background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://gitlab.com/*"
      ],
      "js": [
        "./bundle/contentscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "./bundle/inject.js"
      ],
      "matches": [
        "https://gitlab.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "./bundle/main.html"
  },
  "icons": {
    "16": "./assets/all.png",
    "48": "./assets/all.png",
    "128": "./assets/all.png"
  }
}