GitLab Boost

GitLab Boost

Make some optimizations to the GitLab platform interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GitLab Boost",
  "description": "Make some optimizations to the GitLab platform interface.",
  "version": "0.9.2",
  "icons": {
    "128": "images/icon.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "icon": {
      "path": "images/icon-disable.png"
    }
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/default-avatar.svg",
        "images/issue-types/bug.svg",
        "images/issue-types/story.svg",
        "images/issue-types/sub-task.svg",
        "images/issue-types/task.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}