Magenta Conventional Comments

An extension to quickly add conventional comments on Magenta's GitLab instance.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Conventional comments button",
  "version": "0.0.8",
  "manifest_version": 2,
  "description": "An extension to quickly add conventional comments",
  "homepage_url": "https://conventionalcomments.org/",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "https://git.magenta.dk/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://git.magenta.dk/*"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "css": [
        "src/inject/inject.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{a8521dca-40ab-4b60-8955-119069769841}"
    }
  }
}