GitLab Commit File Tree

GitLab Commit File Tree

Displays a file tree on GitLab merge request and commit pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "css/file-tree.css"
      ],
      "js": [
        "js/file-tree.js"
      ],
      "matches": [
        "https://*/*merge_requests/*",
        "https://*/*commit*"
      ],
      "run_at": "document_idle"
    }
  ],
  "description": "Displays a file tree on GitLab merge request and commit pages.",
  "icons": {
    "128": "icons/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "19": "icons/icon19.png",
      "38": "icons/icon38.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_name": "GitLab Commit File Tree",
    "default_title": "GitLab Commit File Tree"
  },
  "manifest_version": 2,
  "name": "GitLab Commit File Tree",
  "permissions": [
    "https://*/",
    "http://*/",
    "declarativeContent"
  ],
  "short_name": "GitLab Commit File Tree",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.1.0"
}