Gitlab TreeView Fork

Gitlab TreeView Fork

Code tree for Gitlab

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gitlab TreeView Fork",
  "version": "1.0.0",
  "manifest_version": 2,
  "author": "zWing",
  "description": "Code tree for Gitlab",
  "homepage_url": "https://github.com/zWingz/gitlab-treeview",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "images/gitlab.png",
    "48": "images/gitlab.png",
    "128": "images/gitlab.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/gitlab.png",
    "default_title": "Gitlab TreeView"
  },
  "web_accessible_resources": [
    "css/*",
    "fonts/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/font-awesome.css",
        "css/main.css"
      ],
      "js": [
        "js/jquery-1.12.4.min.js",
        "js/jquery.ztree.all.min.js",
        "js/jquery.ztree.exhide.min.js",
        "main.js"
      ],
      "run_at": "document_start"
    }
  ]
}