Refined Gitlab

Refined Gitlab

Chrome extension that enhances GitLab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Refined Gitlab",
  "description": "Chrome extension that enhances GitLab",
  "version": "19.5.22.2040",
  "homepage_url": "https://github.com/kiwicom/refined-gitlab",
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "Gitlab extension"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "unlimitedStorage",
    "activeTab"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "agent.js"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://gitlab.com/*",
        "https://gitlab.skypicker.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}