GitLab - Tree view

GitLab - Tree view

This extension provides tree view for code in GitLab. In time of writing description, this is the only extension that supports custom-hosted GitLab instances. The must-have plugin for code reviews! Enjoy :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "GitLab - Tree view for code",
  "homepage_url": "https://github.com/tomasbonco/gitlabtree",
  "author": "Tomáš Bončo",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Provides folder structure view for code in GitLab.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "page_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/index.js"
      ],
      "css": [
        "dist/style.css"
      ]
    }
  ]
}