Gantt Chart plugin: for GitLab

Gantt Chart plugin: for GitLab

A chrome extension that help user transfer gitlab milestone to gantt chart

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gantt Chart plugin: for GitLab",
  "version": "2.1",
  "description": "A chrome extension that help user transfer gitlab milestone to gantt chart",
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon_16x16.png",
    "32": "images/icon_32x32.png",
    "64": "images/icon_64x64.png",
    "128": "images/icon_128x128.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/gantt.min.css"
      ],
      "js": [
        "scripts/jquery.min.js",
        "scripts/jquery.fn.gantt.min.js",
        "scripts/content.js"
      ],
      "matches": [
        "https://*/*/*/-/milestones*"
      ]
    }
  ]
}