GitLab - Time Tracking

GitLab - Time Tracking

Control the time tracking in the GitLab with this extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitLab - Time Tracking",
  "description": "Control the time tracking in the GitLab with this extension.",
  "version": "1.2",
  "author": "Lucas Monteiro",
  "options_page": "options/index.html",
  "browser_action": {
    "default_icon": "assets/icon.png"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://gitlab.com/*/issues/*"
      ],
      "js": [
        "scripts/moment.min.js",
        "scripts/jquery-3.2.1.min.js",
        "scripts/time.js"
      ]
    }
  ]
}