Issue board details sidebar

Issue board details sidebar

Adds a details view to the sidebar of GitLab boards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Issue board details sidebar",
  "description": "Adds a details view to the sidebar of GitLab boards.",
  "version": "0.7.1",
  "manifest_version": 3,
  "icons": {
    "16": "[email protected]",
    "32": "[email protected]",
    "48": "[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gitlab.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": false,
      "js": [
        "board-enhancement.js"
      ],
      "css": [
        "board-enhancement.css"
      ]
    }
  ],
  "permissions": [],
  "host_permissions": [
    "https://gitlab.com/*"
  ],
  "optional_host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{4df68d77-cf6d-4ac4-829d-9ff46fedd628}"
    }
  }
}